Python-checkins
Threads by month
- ----- 2024 -----
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2023 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2022 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2021 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2020 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2019 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2018 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2017 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2016 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2015 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2014 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2013 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2012 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2011 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2010 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2009 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2008 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2007 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2006 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2005 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2004 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2003 -----
- December
- November
- October
- September
- August
September 2024
- 1 participants
- 822 discussions
gh-124785: Revert "gh-116510: Fix crash due to shared immortal interned strings (gh-124646)" (gh-124807)
by nascheme 30 Sep '24
by nascheme 30 Sep '24
30 Sep '24
https://github.com/python/cpython/commit/7bdfabe2d1ec353ecdc75a5aec41cce83e…
commit: 7bdfabe2d1ec353ecdc75a5aec41cce83e572391
branch: main
author: T. Wouters <thomas(a)python.org>
committer: nascheme <nas-github(a)arctrix.com>
date: 2024-09-30T16:41:46-07:00
summary:
gh-124785: Revert "gh-116510: Fix crash due to shared immortal interned strings (gh-124646)" (gh-124807)
Revert "gh-116510: Fix crash due to shared immortal interned strings. (gh-124646)"
This reverts commit 98b2ed7e239c807f379cd2bf864f372d79064aac.
files:
D Misc/NEWS.d/next/Core_and_Builtins/2024-09-26-18-21-06.gh-issue-116510.FacUWO.rst
M Objects/unicodeobject.c
diff --git a/Misc/NEWS.d/next/Core_and_Builtins/2024-09-26-18-21-06.gh-issue-116510.FacUWO.rst b/Misc/NEWS.d/next/Core_and_Builtins/2024-09-26-18-21-06.gh-issue-116510.FacUWO.rst
deleted file mode 100644
index e3741321006548..00000000000000
--- a/Misc/NEWS.d/next/Core_and_Builtins/2024-09-26-18-21-06.gh-issue-116510.FacUWO.rst
+++ /dev/null
@@ -1,5 +0,0 @@
-Fix a crash caused by immortal interned strings being shared between
-sub-interpreters that use basic single-phase init. In that case, the string
-can be used by an interpreter that outlives the interpreter that created and
-interned it. For interpreters that share obmalloc state, also share the
-interned dict with the main interpreter.
diff --git a/Objects/unicodeobject.c b/Objects/unicodeobject.c
index 0f502ccdaf5767..e9589cfe44f3bf 100644
--- a/Objects/unicodeobject.c
+++ b/Objects/unicodeobject.c
@@ -282,37 +282,13 @@ hashtable_unicode_compare(const void *key1, const void *key2)
}
}
-/* Return true if this interpreter should share the main interpreter's
- intern_dict. That's important for interpreters which load basic
- single-phase init extension modules (m_size == -1). There could be interned
- immortal strings that are shared between interpreters, due to the
- PyDict_Update(mdict, m_copy) call in import_find_extension().
-
- It's not safe to deallocate those strings until all interpreters that
- potentially use them are freed. By storing them in the main interpreter, we
- ensure they get freed after all other interpreters are freed.
-*/
-static bool
-has_shared_intern_dict(PyInterpreterState *interp)
-{
- PyInterpreterState *main_interp = _PyInterpreterState_Main();
- return interp != main_interp && interp->feature_flags & Py_RTFLAGS_USE_MAIN_OBMALLOC;
-}
-
static int
init_interned_dict(PyInterpreterState *interp)
{
assert(get_interned_dict(interp) == NULL);
- PyObject *interned;
- if (has_shared_intern_dict(interp)) {
- interned = get_interned_dict(_PyInterpreterState_Main());
- Py_INCREF(interned);
- }
- else {
- interned = PyDict_New();
- if (interned == NULL) {
- return -1;
- }
+ PyObject *interned = interned = PyDict_New();
+ if (interned == NULL) {
+ return -1;
}
_Py_INTERP_CACHED_OBJECT(interp, interned_strings) = interned;
return 0;
@@ -323,10 +299,7 @@ clear_interned_dict(PyInterpreterState *interp)
{
PyObject *interned = get_interned_dict(interp);
if (interned != NULL) {
- if (!has_shared_intern_dict(interp)) {
- // only clear if the dict belongs to this interpreter
- PyDict_Clear(interned);
- }
+ PyDict_Clear(interned);
Py_DECREF(interned);
_Py_INTERP_CACHED_OBJECT(interp, interned_strings) = NULL;
}
@@ -15645,13 +15618,6 @@ _PyUnicode_ClearInterned(PyInterpreterState *interp)
}
assert(PyDict_CheckExact(interned));
- if (has_shared_intern_dict(interp)) {
- // the dict doesn't belong to this interpreter, skip the debug
- // checks on it and just clear the pointer to it
- clear_interned_dict(interp);
- return;
- }
-
#ifdef INTERNED_STATS
fprintf(stderr, "releasing %zd interned strings\n",
PyDict_GET_SIZE(interned));
@@ -16160,10 +16126,8 @@ _PyUnicode_Fini(PyInterpreterState *interp)
{
struct _Py_unicode_state *state = &interp->unicode;
- if (!has_shared_intern_dict(interp)) {
- // _PyUnicode_ClearInterned() must be called before _PyUnicode_Fini()
- assert(get_interned_dict(interp) == NULL);
- }
+ // _PyUnicode_ClearInterned() must be called before _PyUnicode_Fini()
+ assert(get_interned_dict(interp) == NULL);
_PyUnicode_FiniEncodings(&state->fs_codec);
1
0
30 Sep '24
https://github.com/python/cpython/commit/626d706a666e95e696aaa3af2e8728514d…
commit: 626d706a666e95e696aaa3af2e8728514d31da21
branch: main
author: larryhastings <larry(a)hastings.org>
committer: JelleZijlstra <jelle.zijlstra(a)gmail.com>
date: 2024-09-30T15:25:56-07:00
summary:
Minor edit for code clarification in annotationlib. (#124805)
files:
M Lib/annotationlib.py
diff --git a/Lib/annotationlib.py b/Lib/annotationlib.py
index a11188722487b2..d5166170c071c4 100644
--- a/Lib/annotationlib.py
+++ b/Lib/annotationlib.py
@@ -685,11 +685,9 @@ def get_annotations(
case Format.FORWARDREF:
# For FORWARDREF, we use __annotations__ if it exists
try:
- ann = _get_dunder_annotations(obj)
+ return dict(_get_dunder_annotations(obj))
except NameError:
pass
- else:
- return dict(ann)
# But if __annotations__ threw a NameError, we try calling __annotate__
ann = _get_and_call_annotate(obj, format)
1
0
https://github.com/python/cpython/commit/e0eb44ad49926dd131dc639f5506c6769e…
commit: e0eb44ad49926dd131dc639f5506c6769e45b4eb
branch: 3.13
author: T. Wouters <thomas(a)python.org>
committer: Yhg1s <thomas(a)python.org>
date: 2024-09-30T21:27:29Z
summary:
[3.13] GH-124567: Revert the Incremental GC in 3.13 (#124770)
Revert the incremental GC in 3.13, since it's not clear that without further turning, the benefits outweigh the costs.
Co-authored-by: Adam Turner <9087854+AA-Turner(a)users.noreply.github.com>
files:
A Misc/NEWS.d/next/Core_and_Builtins/2024-09-30-21-02-10.gh-issue-124567.tv_B_C.rst
M Doc/data/python3.13.abi
M Doc/library/gc.rst
M Doc/whatsnew/3.13.rst
M Include/internal/pycore_gc.h
M Include/internal/pycore_object.h
M Include/internal/pycore_runtime_init.h
M Lib/test/test_gc.py
M Modules/gcmodule.c
M Python/gc.c
M Python/gc_free_threading.c
diff --git a/Doc/data/python3.13.abi b/Doc/data/python3.13.abi
index 149ff4b91d5e2c..55112e1e43c01d 100644
--- a/Doc/data/python3.13.abi
+++ b/Doc/data/python3.13.abi
@@ -1679,7 +1679,7 @@
<elf-symbol name='_Py_ctype_tolower' size='256' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
<elf-symbol name='_Py_ctype_toupper' size='256' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
</elf-variable-symbols>
- <abi-instr address-size='64' path='./Modules/_abc.c' comp-dir-path='/src' language='LANG_C11'>
+ <abi-instr address-size='64' path='./Modules/_abc.c' comp-dir-path='/home/runner/work/cpython/cpython' language='LANG_C11'>
<function-decl name='_PyType_SetFlags' filepath='./Include/internal/pycore_typeobject.h' line='231' column='1' visibility='default' binding='global' size-in-bits='64'>
<parameter type-id='type-id-1'/>
<parameter type-id='type-id-2'/>
@@ -1694,7 +1694,7 @@
</function-decl>
<type-decl name='unsigned long int' size-in-bits='64' id='type-id-2'/>
</abi-instr>
- <abi-instr address-size='64' path='./Modules/_codecsmodule.c' comp-dir-path='/src' language='LANG_C11'>
+ <abi-instr address-size='64' path='./Modules/_codecsmodule.c' comp-dir-path='/home/runner/work/cpython/cpython' language='LANG_C11'>
<function-decl name='_PyUnicode_EncodeUTF7' filepath='./Include/internal/pycore_unicodeobject.h' line='90' column='1' visibility='default' binding='global' size-in-bits='64'>
<parameter type-id='type-id-4'/>
<parameter type-id='type-id-5'/>
@@ -1728,10 +1728,10 @@
<return type-id='type-id-4'/>
</function-decl>
</abi-instr>
- <abi-instr address-size='64' path='./Modules/_io/_iomodule.c' comp-dir-path='/src' language='LANG_C11'>
+ <abi-instr address-size='64' path='./Modules/_io/_iomodule.c' comp-dir-path='/home/runner/work/cpython/cpython' language='LANG_C11'>
<var-decl name='_PyIO_Module' type-id='type-id-9' visibility='default' filepath='./Modules/_io/_iomodule.h' line='143' column='1'/>
</abi-instr>
- <abi-instr address-size='64' path='./Modules/_io/bufferedio.c' comp-dir-path='/src' language='LANG_C11'>
+ <abi-instr address-size='64' path='./Modules/_io/bufferedio.c' comp-dir-path='/home/runner/work/cpython/cpython' language='LANG_C11'>
<typedef-decl name='_PyIO_State' type-id='type-id-10' filepath='./Modules/_io/_iomodule.h' line='35' column='1' id='type-id-11'/>
<typedef-decl name='Py_off_t' type-id='type-id-12' filepath='./Modules/_io/_iomodule.h' line='109' column='1' id='type-id-13'/>
<class-decl name='_io_state' size-in-bits='1024' is-struct='yes' visibility='default' filepath='./Modules/_io/_iomodule.h' line='145' column='1' id='type-id-10'>
@@ -1819,11 +1819,11 @@
<return type-id='type-id-13'/>
</function-decl>
</abi-instr>
- <abi-instr address-size='64' path='./Modules/_io/bytesio.c' comp-dir-path='/src' language='LANG_C11'>
+ <abi-instr address-size='64' path='./Modules/_io/bytesio.c' comp-dir-path='/home/runner/work/cpython/cpython' language='LANG_C11'>
<var-decl name='bytesio_spec' type-id='type-id-16' visibility='default' filepath='./Modules/_io/_iomodule.h' line='17' column='1'/>
<var-decl name='bytesiobuf_spec' type-id='type-id-16' visibility='default' filepath='./Modules/_io/_iomodule.h' line='18' column='1'/>
</abi-instr>
- <abi-instr address-size='64' path='./Modules/_io/fileio.c' comp-dir-path='/src' language='LANG_C11'>
+ <abi-instr address-size='64' path='./Modules/_io/fileio.c' comp-dir-path='/home/runner/work/cpython/cpython' language='LANG_C11'>
<var-decl name='fileio_spec' type-id='type-id-16' visibility='default' filepath='./Modules/_io/_iomodule.h' line='19' column='1'/>
<function-decl name='_PyIOBase_finalize' filepath='./Modules/_io/_iomodule.h' line='48' column='1' visibility='default' binding='global' size-in-bits='64'>
<parameter type-id='type-id-4'/>
@@ -1835,14 +1835,14 @@
<return type-id='type-id-4'/>
</function-decl>
</abi-instr>
- <abi-instr address-size='64' path='./Modules/_io/iobase.c' comp-dir-path='/src' language='LANG_C11'>
+ <abi-instr address-size='64' path='./Modules/_io/iobase.c' comp-dir-path='/home/runner/work/cpython/cpython' language='LANG_C11'>
<var-decl name='iobase_spec' type-id='type-id-16' visibility='default' filepath='./Modules/_io/_iomodule.h' line='20' column='1'/>
<var-decl name='rawiobase_spec' type-id='type-id-16' visibility='default' filepath='./Modules/_io/_iomodule.h' line='22' column='1'/>
<function-decl name='_PyIO_trap_eintr' filepath='./Modules/_io/_iomodule.h' line='79' column='1' visibility='default' binding='global' size-in-bits='64'>
<return type-id='type-id-5'/>
</function-decl>
</abi-instr>
- <abi-instr address-size='64' path='./Modules/_io/stringio.c' comp-dir-path='/src' language='LANG_C11'>
+ <abi-instr address-size='64' path='./Modules/_io/stringio.c' comp-dir-path='/home/runner/work/cpython/cpython' language='LANG_C11'>
<var-decl name='stringio_spec' type-id='type-id-16' visibility='default' filepath='./Modules/_io/_iomodule.h' line='23' column='1'/>
<function-decl name='_PyIncrementalNewlineDecoder_decode' filepath='./Modules/_io/_iomodule.h' line='55' column='1' visibility='default' binding='global' size-in-bits='64'>
<parameter type-id='type-id-4'/>
@@ -1861,7 +1861,7 @@
<return type-id='type-id-7'/>
</function-decl>
</abi-instr>
- <abi-instr address-size='64' path='./Modules/_io/textio.c' comp-dir-path='/src' language='LANG_C11'>
+ <abi-instr address-size='64' path='./Modules/_io/textio.c' comp-dir-path='/home/runner/work/cpython/cpython' language='LANG_C11'>
<function-decl name='_PyCodec_LookupTextEncoding' filepath='./Include/internal/pycore_codecs.h' line='37' column='1' visibility='default' binding='global' size-in-bits='64'>
<parameter type-id='type-id-6'/>
<parameter type-id='type-id-6'/>
@@ -1889,7 +1889,7 @@
<return type-id='type-id-4'/>
</function-decl>
</abi-instr>
- <abi-instr address-size='64' path='./Modules/_localemodule.c' comp-dir-path='/src' language='LANG_C11'>
+ <abi-instr address-size='64' path='./Modules/_localemodule.c' comp-dir-path='/home/runner/work/cpython/cpython' language='LANG_C11'>
<function-decl name='gettext' filepath='/usr/include/libintl.h' line='39' column='1' visibility='default' binding='global' size-in-bits='64'>
<parameter type-id='type-id-6'/>
<return type-id='type-id-17'/>
@@ -1931,7 +1931,7 @@
<return type-id='type-id-21'/>
</function-decl>
</abi-instr>
- <abi-instr address-size='64' path='./Modules/_sre/sre.c' comp-dir-path='/src' language='LANG_C11'>
+ <abi-instr address-size='64' path='./Modules/_sre/sre.c' comp-dir-path='/home/runner/work/cpython/cpython' language='LANG_C11'>
<qualified-type-def type-id='type-id-22' const='yes' id='type-id-23'/>
<pointer-type-def type-id='type-id-23' size-in-bits='64' id='type-id-24'/>
<pointer-type-def type-id='type-id-24' size-in-bits='64' id='type-id-25'/>
@@ -1948,7 +1948,7 @@
</function-decl>
<type-decl name='unsigned short int' size-in-bits='16' id='type-id-22'/>
</abi-instr>
- <abi-instr address-size='64' path='./Modules/_threadmodule.c' comp-dir-path='/src' language='LANG_C11'>
+ <abi-instr address-size='64' path='./Modules/_threadmodule.c' comp-dir-path='/home/runner/work/cpython/cpython' language='LANG_C11'>
<function-decl name='_PyErr_Display' filepath='./Include/internal/pycore_pylifecycle.h' line='83' column='1' visibility='default' binding='global' size-in-bits='64'>
<parameter type-id='type-id-4'/>
<parameter type-id='type-id-4'/>
@@ -1961,7 +1961,7 @@
<return type-id='type-id-3'/>
</function-decl>
</abi-instr>
- <abi-instr address-size='64' path='./Modules/_tracemalloc.c' comp-dir-path='/src' language='LANG_C11'>
+ <abi-instr address-size='64' path='./Modules/_tracemalloc.c' comp-dir-path='/home/runner/work/cpython/cpython' language='LANG_C11'>
<function-decl name='_PyTraceMalloc_IsTracing' filepath='./Include/internal/pycore_tracemalloc.h' line='135' column='1' visibility='default' binding='global' size-in-bits='64'>
<return type-id='type-id-5'/>
</function-decl>
@@ -1994,13 +1994,13 @@
<return type-id='type-id-3'/>
</function-decl>
</abi-instr>
- <abi-instr address-size='64' path='./Modules/_weakref.c' comp-dir-path='/src' language='LANG_C11'>
+ <abi-instr address-size='64' path='./Modules/_weakref.c' comp-dir-path='/home/runner/work/cpython/cpython' language='LANG_C11'>
<function-decl name='_PyWeakref_GetWeakrefCount' filepath='./Include/internal/pycore_weakref.h' line='108' column='1' visibility='default' binding='global' size-in-bits='64'>
<parameter type-id='type-id-4'/>
<return type-id='type-id-7'/>
</function-decl>
</abi-instr>
- <abi-instr address-size='64' path='./Modules/atexitmodule.c' comp-dir-path='/src' language='LANG_C11'>
+ <abi-instr address-size='64' path='./Modules/atexitmodule.c' comp-dir-path='/home/runner/work/cpython/cpython' language='LANG_C11'>
<function-decl name='PyUnstable_AtExit' mangled-name='PyUnstable_AtExit' filepath='./Modules/atexitmodule.c' line='27' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnstable_AtExit'>
<parameter type-id='type-id-27' name='interp' filepath='./Modules/atexitmodule.c' line='27' column='1'/>
<parameter type-id='type-id-28' name='func' filepath='./Modules/atexitmodule.c' line='28' column='1'/>
@@ -2008,7 +2008,7 @@
<return type-id='type-id-5'/>
</function-decl>
</abi-instr>
- <abi-instr address-size='64' path='./Modules/faulthandler.c' comp-dir-path='/src' language='LANG_C11'>
+ <abi-instr address-size='64' path='./Modules/faulthandler.c' comp-dir-path='/home/runner/work/cpython/cpython' language='LANG_C11'>
<enum-decl name='__rlimit_resource' filepath='/usr/include/x86_64-linux-gnu/bits/resource.h' line='31' column='1' id='type-id-30'>
<underlying-type type-id='type-id-31'/>
<enumerator name='RLIMIT_CPU' value='0'/>
@@ -2093,7 +2093,7 @@
<return type-id='type-id-2'/>
</function-decl>
</abi-instr>
- <abi-instr address-size='64' path='./Modules/getbuildinfo.c' comp-dir-path='/src' language='LANG_C11'>
+ <abi-instr address-size='64' path='./Modules/getbuildinfo.c' comp-dir-path='/home/runner/work/cpython/cpython' language='LANG_C11'>
<type-decl name='char' size-in-bits='8' id='type-id-52'/>
<type-decl name='int' size-in-bits='32' id='type-id-5'/>
<type-decl name='unsigned long int' size-in-bits='64' id='type-id-2'/>
@@ -2118,7 +2118,7 @@
<return type-id='type-id-5'/>
</function-decl>
</abi-instr>
- <abi-instr address-size='64' path='./Modules/getpath.c' comp-dir-path='/src' language='LANG_C11'>
+ <abi-instr address-size='64' path='./Modules/getpath.c' comp-dir-path='/home/runner/work/cpython/cpython' language='LANG_C11'>
<function-decl name='_Py_wfopen' filepath='./Include/internal/pycore_fileutils.h' line='129' column='1' visibility='default' binding='global' size-in-bits='64'>
<parameter type-id='type-id-18'/>
<parameter type-id='type-id-18'/>
@@ -2157,7 +2157,7 @@
<return type-id='type-id-4'/>
</function-decl>
</abi-instr>
- <abi-instr address-size='64' path='./Modules/posixmodule.c' comp-dir-path='/src' language='LANG_C11'>
+ <abi-instr address-size='64' path='./Modules/posixmodule.c' comp-dir-path='/home/runner/work/cpython/cpython' language='LANG_C11'>
<array-type-def dimensions='1' type-id='type-id-61' size-in-bits='1024' id='type-id-62'>
<subrange length='16' type-id='type-id-2' id='type-id-63'/>
</array-type-def>
@@ -3384,7 +3384,7 @@
<return type-id='type-id-5'/>
</function-type>
</abi-instr>
- <abi-instr address-size='64' path='./Modules/pwdmodule.c' comp-dir-path='/src' language='LANG_C11'>
+ <abi-instr address-size='64' path='./Modules/pwdmodule.c' comp-dir-path='/home/runner/work/cpython/cpython' language='LANG_C11'>
<class-decl name='passwd' size-in-bits='384' is-struct='yes' visibility='default' filepath='/usr/include/pwd.h' line='49' column='1' id='type-id-189'>
<data-member access='public' layout-offset-in-bits='0'>
<var-decl name='pw_name' type-id='type-id-17' visibility='default' filepath='/usr/include/pwd.h' line='51' column='1'/>
@@ -3438,7 +3438,7 @@
<return type-id='type-id-5'/>
</function-decl>
</abi-instr>
- <abi-instr address-size='64' path='./Modules/signalmodule.c' comp-dir-path='/src' language='LANG_C11'>
+ <abi-instr address-size='64' path='./Modules/signalmodule.c' comp-dir-path='/home/runner/work/cpython/cpython' language='LANG_C11'>
<enum-decl name='__itimer_which' filepath='/usr/include/x86_64-linux-gnu/sys/time.h' line='114' column='1' id='type-id-194'>
<underlying-type type-id='type-id-31'/>
<enumerator name='ITIMER_REAL' value='0'/>
@@ -3477,20 +3477,20 @@
<parameter type-id='type-id-5' name='fd' filepath='./Modules/signalmodule.c' line='833' column='1'/>
<return type-id='type-id-5'/>
</function-decl>
- <function-decl name='PyErr_SetInterruptEx' mangled-name='PyErr_SetInterruptEx' filepath='./Modules/signalmodule.c' line='1886' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyErr_SetInterruptEx'>
- <parameter type-id='type-id-5' name='signum' filepath='./Modules/signalmodule.c' line='1886' column='1'/>
+ <function-decl name='PyErr_SetInterruptEx' mangled-name='PyErr_SetInterruptEx' filepath='./Modules/signalmodule.c' line='1888' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyErr_SetInterruptEx'>
+ <parameter type-id='type-id-5' name='signum' filepath='./Modules/signalmodule.c' line='1888' column='1'/>
<return type-id='type-id-5'/>
</function-decl>
- <function-decl name='PyErr_SetInterrupt' mangled-name='PyErr_SetInterrupt' filepath='./Modules/signalmodule.c' line='1902' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyErr_SetInterrupt'>
+ <function-decl name='PyErr_SetInterrupt' mangled-name='PyErr_SetInterrupt' filepath='./Modules/signalmodule.c' line='1904' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyErr_SetInterrupt'>
<return type-id='type-id-3'/>
</function-decl>
- <function-decl name='_Py_RestoreSignals' mangled-name='_Py_RestoreSignals' filepath='./Modules/signalmodule.c' line='1940' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_RestoreSignals'>
+ <function-decl name='_Py_RestoreSignals' mangled-name='_Py_RestoreSignals' filepath='./Modules/signalmodule.c' line='1942' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_RestoreSignals'>
<return type-id='type-id-3'/>
</function-decl>
- <function-decl name='PyOS_InterruptOccurred' mangled-name='PyOS_InterruptOccurred' filepath='./Modules/signalmodule.c' line='2012' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyOS_InterruptOccurred'>
+ <function-decl name='PyOS_InterruptOccurred' mangled-name='PyOS_InterruptOccurred' filepath='./Modules/signalmodule.c' line='2014' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyOS_InterruptOccurred'>
<return type-id='type-id-5'/>
</function-decl>
- <function-decl name='_PyOS_IsMainThread' mangled-name='_PyOS_IsMainThread' filepath='./Modules/signalmodule.c' line='2045' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyOS_IsMainThread'>
+ <function-decl name='_PyOS_IsMainThread' mangled-name='_PyOS_IsMainThread' filepath='./Modules/signalmodule.c' line='2047' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyOS_IsMainThread'>
<return type-id='type-id-5'/>
</function-decl>
<function-decl name='sigismember' filepath='/usr/include/signal.h' line='211' column='1' visibility='default' binding='global' size-in-bits='64'>
@@ -3552,7 +3552,7 @@
<return type-id='type-id-5'/>
</function-decl>
</abi-instr>
- <abi-instr address-size='64' path='./Modules/symtablemodule.c' comp-dir-path='/src' language='LANG_C11'>
+ <abi-instr address-size='64' path='./Modules/symtablemodule.c' comp-dir-path='/home/runner/work/cpython/cpython' language='LANG_C11'>
<function-decl name='_Py_SymtableStringObjectFlags' filepath='./Include/internal/pycore_symtable.h' line='190' column='1' visibility='default' binding='global' size-in-bits='64'>
<parameter type-id='type-id-6'/>
<parameter type-id='type-id-4'/>
@@ -3561,7 +3561,7 @@
<return type-id='type-id-208'/>
</function-decl>
</abi-instr>
- <abi-instr address-size='64' path='./Modules/timemodule.c' comp-dir-path='/src' language='LANG_C11'>
+ <abi-instr address-size='64' path='./Modules/timemodule.c' comp-dir-path='/home/runner/work/cpython/cpython' language='LANG_C11'>
<class-decl name='_PyTimeFraction' size-in-bits='128' is-struct='yes' naming-typedef-id='type-id-209' visibility='default' filepath='./Include/internal/pycore_time.h' line='310' column='1' id='type-id-210'>
<data-member access='public' layout-offset-in-bits='0'>
<var-decl name='numer' type-id='type-id-211' visibility='default' filepath='./Include/internal/pycore_time.h' line='311' column='1'/>
@@ -3647,7 +3647,7 @@
<return type-id='type-id-21'/>
</function-decl>
</abi-instr>
- <abi-instr address-size='64' path='./Python/dynload_shlib.c' comp-dir-path='/src' language='LANG_C11'>
+ <abi-instr address-size='64' path='./Python/dynload_shlib.c' comp-dir-path='/home/runner/work/cpython/cpython' language='LANG_C11'>
<array-type-def dimensions='1' type-id='type-id-6' size-in-bits='256' id='type-id-226'>
<subrange length='4' type-id='type-id-2' id='type-id-227'/>
</array-type-def>
@@ -3669,12 +3669,12 @@
<return type-id='type-id-17'/>
</function-decl>
</abi-instr>
- <abi-instr address-size='64' path='./Python/getplatform.c' comp-dir-path='/src' language='LANG_C11'>
+ <abi-instr address-size='64' path='./Python/getplatform.c' comp-dir-path='/home/runner/work/cpython/cpython' language='LANG_C11'>
<function-decl name='Py_GetPlatform' mangled-name='Py_GetPlatform' filepath='./Python/getplatform.c' line='9' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='Py_GetPlatform'>
<return type-id='type-id-6'/>
</function-decl>
</abi-instr>
- <abi-instr address-size='64' path='./Python/importdl.c' comp-dir-path='/src' language='LANG_C11'>
+ <abi-instr address-size='64' path='./Python/importdl.c' comp-dir-path='/home/runner/work/cpython/cpython' language='LANG_C11'>
<typedef-decl name='dl_funcptr' type-id='type-id-231' filepath='./Include/internal/pycore_importdl.h' line='128' column='1' id='type-id-232'/>
<function-decl name='_PyImport_SwapPackageContext' filepath='./Include/internal/pycore_import.h' line='131' column='1' visibility='default' binding='global' size-in-bits='64'>
<parameter type-id='type-id-6'/>
@@ -3691,7 +3691,7 @@
<return type-id='type-id-3'/>
</function-type>
</abi-instr>
- <abi-instr address-size='64' path='./Python/sysmodule.c' comp-dir-path='/src' language='LANG_C11'>
+ <abi-instr address-size='64' path='./Python/sysmodule.c' comp-dir-path='/home/runner/work/cpython/cpython' language='LANG_C11'>
<function-decl name='_PyEval_SetSwitchInterval' filepath='./Include/internal/pycore_ceval.h' line='33' column='1' visibility='default' binding='global' size-in-bits='64'>
<parameter type-id='type-id-2'/>
<return type-id='type-id-3'/>
@@ -3881,7 +3881,7 @@
<return type-id='type-id-117'/>
</function-decl>
</abi-instr>
- <abi-instr address-size='64' path='Modules/config.c' comp-dir-path='/src' language='LANG_C11'>
+ <abi-instr address-size='64' path='Modules/config.c' comp-dir-path='/home/runner/work/cpython/cpython' language='LANG_C11'>
<function-decl name='PyInit_atexit' mangled-name='PyInit_atexit' filepath='Modules/config.c' line='26' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyInit_atexit'>
<return type-id='type-id-4'/>
</function-decl>
@@ -3958,44 +3958,44 @@
<return type-id='type-id-4'/>
</function-decl>
</abi-instr>
- <abi-instr address-size='64' path='Modules/gcmodule.c' comp-dir-path='/src' language='LANG_C11'>
- <enum-decl name='_PyGC_Reason' naming-typedef-id='type-id-240' filepath='./Include/internal/pycore_gc.h' line='176' column='1' id='type-id-241'>
+ <abi-instr address-size='64' path='Modules/gcmodule.c' comp-dir-path='/home/runner/work/cpython/cpython' language='LANG_C11'>
+ <enum-decl name='_PyGC_Reason' naming-typedef-id='type-id-240' filepath='./Include/internal/pycore_gc.h' line='161' column='1' id='type-id-241'>
<underlying-type type-id='type-id-31'/>
<enumerator name='_Py_GC_REASON_HEAP' value='0'/>
<enumerator name='_Py_GC_REASON_SHUTDOWN' value='1'/>
<enumerator name='_Py_GC_REASON_MANUAL' value='2'/>
</enum-decl>
- <typedef-decl name='_PyGC_Reason' type-id='type-id-241' filepath='./Include/internal/pycore_gc.h' line='185' column='1' id='type-id-240'/>
- <function-decl name='_PyGC_Collect' filepath='./Include/internal/pycore_gc.h' line='368' column='1' visibility='default' binding='global' size-in-bits='64'>
+ <typedef-decl name='_PyGC_Reason' type-id='type-id-241' filepath='./Include/internal/pycore_gc.h' line='170' column='1' id='type-id-240'/>
+ <function-decl name='_PyGC_Collect' filepath='./Include/internal/pycore_gc.h' line='338' column='1' visibility='default' binding='global' size-in-bits='64'>
<parameter type-id='type-id-26'/>
<parameter type-id='type-id-5'/>
<parameter type-id='type-id-240'/>
<return type-id='type-id-7'/>
</function-decl>
- <function-decl name='_PyGC_Freeze' filepath='./Include/internal/pycore_gc.h' line='372' column='1' visibility='default' binding='global' size-in-bits='64'>
+ <function-decl name='_PyGC_Freeze' filepath='./Include/internal/pycore_gc.h' line='343' column='1' visibility='default' binding='global' size-in-bits='64'>
<parameter type-id='type-id-27'/>
<return type-id='type-id-3'/>
</function-decl>
- <function-decl name='_PyGC_Unfreeze' filepath='./Include/internal/pycore_gc.h' line='374' column='1' visibility='default' binding='global' size-in-bits='64'>
+ <function-decl name='_PyGC_Unfreeze' filepath='./Include/internal/pycore_gc.h' line='345' column='1' visibility='default' binding='global' size-in-bits='64'>
<parameter type-id='type-id-27'/>
<return type-id='type-id-3'/>
</function-decl>
- <function-decl name='_PyGC_GetFreezeCount' filepath='./Include/internal/pycore_gc.h' line='376' column='1' visibility='default' binding='global' size-in-bits='64'>
+ <function-decl name='_PyGC_GetFreezeCount' filepath='./Include/internal/pycore_gc.h' line='347' column='1' visibility='default' binding='global' size-in-bits='64'>
<parameter type-id='type-id-27'/>
<return type-id='type-id-7'/>
</function-decl>
- <function-decl name='_PyGC_GetObjects' filepath='./Include/internal/pycore_gc.h' line='378' column='1' visibility='default' binding='global' size-in-bits='64'>
+ <function-decl name='_PyGC_GetObjects' filepath='./Include/internal/pycore_gc.h' line='349' column='1' visibility='default' binding='global' size-in-bits='64'>
<parameter type-id='type-id-27'/>
<parameter type-id='type-id-5'/>
<return type-id='type-id-4'/>
</function-decl>
- <function-decl name='_PyGC_GetReferrers' filepath='./Include/internal/pycore_gc.h' line='379' column='1' visibility='default' binding='global' size-in-bits='64'>
+ <function-decl name='_PyGC_GetReferrers' filepath='./Include/internal/pycore_gc.h' line='350' column='1' visibility='default' binding='global' size-in-bits='64'>
<parameter type-id='type-id-27'/>
<parameter type-id='type-id-4'/>
<return type-id='type-id-4'/>
</function-decl>
</abi-instr>
- <abi-instr address-size='64' path='Modules/main.c' comp-dir-path='/src' language='LANG_C11'>
+ <abi-instr address-size='64' path='Modules/main.c' comp-dir-path='/home/runner/work/cpython/cpython' language='LANG_C11'>
<qualified-type-def type-id='type-id-242' const='yes' id='type-id-243'/>
<pointer-type-def type-id='type-id-243' size-in-bits='64' id='type-id-244'/>
<function-decl name='_PyImport_Fini2' filepath='./Include/internal/pycore_import.h' line='163' column='1' visibility='default' binding='global' size-in-bits='64'>
@@ -4055,7 +4055,7 @@
<return type-id='type-id-5'/>
</function-decl>
</abi-instr>
- <abi-instr address-size='64' path='Objects/abstract.c' comp-dir-path='/src' language='LANG_C11'>
+ <abi-instr address-size='64' path='Objects/abstract.c' comp-dir-path='/home/runner/work/cpython/cpython' language='LANG_C11'>
<typedef-decl name='_Py_simple_func' type-id='type-id-247' filepath='./Include/internal/pycore_crossinterp.h' line='26' column='1' id='type-id-248'/>
<pointer-type-def type-id='type-id-249' size-in-bits='64' id='type-id-250'/>
<qualified-type-def type-id='type-id-251' const='yes' id='type-id-252'/>
@@ -4167,12 +4167,12 @@
<parameter type-id='type-id-5'/>
<return type-id='type-id-4'/>
</function-decl>
- <function-decl name='_PyObject_LookupSpecial' mangled-name='_PyObject_LookupSpecial' filepath='./Include/internal/pycore_object.h' line='749' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyObject_LookupSpecial'>
+ <function-decl name='_PyObject_LookupSpecial' mangled-name='_PyObject_LookupSpecial' filepath='./Include/internal/pycore_object.h' line='748' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyObject_LookupSpecial'>
<parameter type-id='type-id-4'/>
<parameter type-id='type-id-4'/>
<return type-id='type-id-4'/>
</function-decl>
- <function-decl name='_PyObject_NextNotImplemented' filepath='./Include/internal/pycore_object.h' line='754' column='1' visibility='default' binding='global' size-in-bits='64'>
+ <function-decl name='_PyObject_NextNotImplemented' filepath='./Include/internal/pycore_object.h' line='753' column='1' visibility='default' binding='global' size-in-bits='64'>
<parameter type-id='type-id-4'/>
<return type-id='type-id-4'/>
</function-decl>
@@ -4226,24 +4226,24 @@
<parameter type-id='type-id-4'/>
<return type-id='type-id-171'/>
</function-decl>
- <function-decl name='PyType_IsSubtype' mangled-name='PyType_IsSubtype' filepath='./Include/object.h' line='533' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyType_IsSubtype'>
+ <function-decl name='PyType_IsSubtype' mangled-name='PyType_IsSubtype' filepath='./Include/object.h' line='539' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyType_IsSubtype'>
<parameter type-id='type-id-1'/>
<parameter type-id='type-id-1'/>
<return type-id='type-id-5'/>
</function-decl>
- <function-decl name='PyObject_RichCompareBool' mangled-name='PyObject_RichCompareBool' filepath='./Include/object.h' line='561' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyObject_RichCompareBool'>
+ <function-decl name='PyObject_RichCompareBool' mangled-name='PyObject_RichCompareBool' filepath='./Include/object.h' line='567' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyObject_RichCompareBool'>
<parameter type-id='type-id-4'/>
<parameter type-id='type-id-4'/>
<parameter type-id='type-id-5'/>
<return type-id='type-id-5'/>
</function-decl>
- <function-decl name='PyObject_GetOptionalAttr' mangled-name='PyObject_GetOptionalAttr' filepath='./Include/object.h' line='568' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyObject_GetOptionalAttr'>
+ <function-decl name='PyObject_GetOptionalAttr' mangled-name='PyObject_GetOptionalAttr' filepath='./Include/object.h' line='574' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyObject_GetOptionalAttr'>
<parameter type-id='type-id-4'/>
<parameter type-id='type-id-4'/>
<parameter type-id='type-id-236'/>
<return type-id='type-id-5'/>
</function-decl>
- <function-decl name='PyObject_IsTrue' mangled-name='PyObject_IsTrue' filepath='./Include/object.h' line='586' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyObject_IsTrue'>
+ <function-decl name='PyObject_IsTrue' mangled-name='PyObject_IsTrue' filepath='./Include/object.h' line='592' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyObject_IsTrue'>
<parameter type-id='type-id-4'/>
<return type-id='type-id-5'/>
</function-decl>
@@ -4802,7 +4802,7 @@
<return type-id='type-id-5'/>
</function-type>
</abi-instr>
- <abi-instr address-size='64' path='Objects/boolobject.c' comp-dir-path='/src' language='LANG_C11'>
+ <abi-instr address-size='64' path='Objects/boolobject.c' comp-dir-path='/home/runner/work/cpython/cpython' language='LANG_C11'>
<var-decl name='_Py_FalseStruct' type-id='type-id-249' mangled-name='_Py_FalseStruct' visibility='default' filepath='./Include/boolobject.h' line='17' column='1' elf-symbol-id='_Py_FalseStruct'/>
<var-decl name='_Py_TrueStruct' type-id='type-id-249' mangled-name='_Py_TrueStruct' visibility='default' filepath='./Include/boolobject.h' line='18' column='1' elf-symbol-id='_Py_TrueStruct'/>
<function-decl name='_PyArg_NoKwnames' filepath='./Include/internal/pycore_modsupport.h' line='15' column='1' visibility='default' binding='global' size-in-bits='64'>
@@ -4834,13 +4834,13 @@
<parameter is-variadic='yes'/>
<return type-id='type-id-5'/>
</function-decl>
- <var-decl name='PyBool_Type' type-id='type-id-264' mangled-name='PyBool_Type' visibility='default' filepath='./Include/object.h' line='337' column='1' elf-symbol-id='PyBool_Type'/>
+ <var-decl name='PyBool_Type' type-id='type-id-264' mangled-name='PyBool_Type' visibility='default' filepath='./Include/object.h' line='343' column='1' elf-symbol-id='PyBool_Type'/>
<function-decl name='PyBool_FromLong' mangled-name='PyBool_FromLong' filepath='Objects/boolobject.c' line='21' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyBool_FromLong'>
<parameter type-id='type-id-181' name='ok' filepath='Objects/boolobject.c' line='21' column='1'/>
<return type-id='type-id-4'/>
</function-decl>
</abi-instr>
- <abi-instr address-size='64' path='Objects/bytearrayobject.c' comp-dir-path='/src' language='LANG_C11'>
+ <abi-instr address-size='64' path='Objects/bytearrayobject.c' comp-dir-path='/home/runner/work/cpython/cpython' language='LANG_C11'>
<array-type-def dimensions='1' type-id='type-id-52' size-in-bits='infinite' id='type-id-265'>
<subrange length='infinite' id='type-id-229'/>
</array-type-def>
@@ -5034,7 +5034,7 @@
<parameter type-id='type-id-236'/>
<return type-id='type-id-256'/>
</function-decl>
- <function-decl name='_PyObject_GetState' mangled-name='_PyObject_GetState' filepath='./Include/internal/pycore_object.h' line='758' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyObject_GetState'>
+ <function-decl name='_PyObject_GetState' mangled-name='_PyObject_GetState' filepath='./Include/internal/pycore_object.h' line='757' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyObject_GetState'>
<parameter type-id='type-id-4'/>
<return type-id='type-id-4'/>
</function-decl>
@@ -5070,22 +5070,22 @@
<parameter type-id='type-id-4'/>
<return type-id='type-id-5'/>
</function-decl>
- <function-decl name='PyType_GenericAlloc' mangled-name='PyType_GenericAlloc' filepath='./Include/object.h' line='549' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyType_GenericAlloc'>
+ <function-decl name='PyType_GenericAlloc' mangled-name='PyType_GenericAlloc' filepath='./Include/object.h' line='555' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyType_GenericAlloc'>
<parameter type-id='type-id-1'/>
<parameter type-id='type-id-7'/>
<return type-id='type-id-4'/>
</function-decl>
- <function-decl name='PyType_GenericNew' mangled-name='PyType_GenericNew' filepath='./Include/object.h' line='550' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyType_GenericNew'>
+ <function-decl name='PyType_GenericNew' mangled-name='PyType_GenericNew' filepath='./Include/object.h' line='556' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyType_GenericNew'>
<parameter type-id='type-id-1'/>
<parameter type-id='type-id-4'/>
<parameter type-id='type-id-4'/>
<return type-id='type-id-4'/>
</function-decl>
- <function-decl name='PyObject_SelfIter' mangled-name='PyObject_SelfIter' filepath='./Include/object.h' line='578' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyObject_SelfIter'>
+ <function-decl name='PyObject_SelfIter' mangled-name='PyObject_SelfIter' filepath='./Include/object.h' line='584' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyObject_SelfIter'>
<parameter type-id='type-id-4'/>
<return type-id='type-id-4'/>
</function-decl>
- <function-decl name='PyObject_GenericGetAttr' mangled-name='PyObject_GenericGetAttr' filepath='./Include/object.h' line='579' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyObject_GenericGetAttr'>
+ <function-decl name='PyObject_GenericGetAttr' mangled-name='PyObject_GenericGetAttr' filepath='./Include/object.h' line='585' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyObject_GenericGetAttr'>
<parameter type-id='type-id-4'/>
<parameter type-id='type-id-4'/>
<return type-id='type-id-4'/>
@@ -5191,7 +5191,7 @@
<return type-id='type-id-4'/>
</function-decl>
</abi-instr>
- <abi-instr address-size='64' path='Objects/bytes_methods.c' comp-dir-path='/src' language='LANG_C11'>
+ <abi-instr address-size='64' path='Objects/bytes_methods.c' comp-dir-path='/home/runner/work/cpython/cpython' language='LANG_C11'>
<array-type-def dimensions='1' type-id='type-id-54' size-in-bits='984' id='type-id-271'>
<subrange length='123' type-id='type-id-2' id='type-id-272'/>
</array-type-def>
@@ -5249,7 +5249,7 @@
<return type-id='type-id-29'/>
</function-decl>
</abi-instr>
- <abi-instr address-size='64' path='Objects/bytesobject.c' comp-dir-path='/src' language='LANG_C11'>
+ <abi-instr address-size='64' path='Objects/bytesobject.c' comp-dir-path='/home/runner/work/cpython/cpython' language='LANG_C11'>
<array-type-def dimensions='1' type-id='type-id-52' size-in-bits='4096' id='type-id-294'>
<subrange length='512' type-id='type-id-2' id='type-id-295'/>
</array-type-def>
@@ -5312,7 +5312,7 @@
<parameter type-id='type-id-5'/>
<return type-id='type-id-4'/>
</function-decl>
- <function-decl name='PyObject_ASCII' mangled-name='PyObject_ASCII' filepath='./Include/object.h' line='558' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyObject_ASCII'>
+ <function-decl name='PyObject_ASCII' mangled-name='PyObject_ASCII' filepath='./Include/object.h' line='564' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyObject_ASCII'>
<parameter type-id='type-id-4'/>
<return type-id='type-id-4'/>
</function-decl>
@@ -5446,7 +5446,7 @@
<return type-id='type-id-29'/>
</function-decl>
</abi-instr>
- <abi-instr address-size='64' path='Objects/call.c' comp-dir-path='/src' language='LANG_C11'>
+ <abi-instr address-size='64' path='Objects/call.c' comp-dir-path='/home/runner/work/cpython/cpython' language='LANG_C11'>
<class-decl name='_Py_Identifier' size-in-bits='192' is-struct='yes' visibility='default' filepath='./Include/cpython/object.h' line='38' column='1' id='type-id-301'>
<data-member access='public' layout-offset-in-bits='0'>
<var-decl name='string' type-id='type-id-6' visibility='default' filepath='./Include/cpython/object.h' line='39' column='1'/>
@@ -5506,7 +5506,7 @@
<parameter type-id='type-id-8'/>
<return type-id='type-id-236'/>
</function-decl>
- <function-decl name='_PyObject_GetMethod' mangled-name='_PyObject_GetMethod' filepath='./Include/internal/pycore_object.h' line='753' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyObject_GetMethod'>
+ <function-decl name='_PyObject_GetMethod' mangled-name='_PyObject_GetMethod' filepath='./Include/internal/pycore_object.h' line='752' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyObject_GetMethod'>
<parameter type-id='type-id-4'/>
<parameter type-id='type-id-4'/>
<parameter type-id='type-id-236'/>
@@ -5538,12 +5538,12 @@
<parameter type-id='type-id-4'/>
<return type-id='type-id-4'/>
</function-decl>
- <function-decl name='PyObject_GetAttrString' mangled-name='PyObject_GetAttrString' filepath='./Include/object.h' line='562' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyObject_GetAttrString'>
+ <function-decl name='PyObject_GetAttrString' mangled-name='PyObject_GetAttrString' filepath='./Include/object.h' line='568' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyObject_GetAttrString'>
<parameter type-id='type-id-4'/>
<parameter type-id='type-id-6'/>
<return type-id='type-id-4'/>
</function-decl>
- <function-decl name='PyCallable_Check' mangled-name='PyCallable_Check' filepath='./Include/object.h' line='588' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyCallable_Check'>
+ <function-decl name='PyCallable_Check' mangled-name='PyCallable_Check' filepath='./Include/object.h' line='594' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyCallable_Check'>
<parameter type-id='type-id-4'/>
<return type-id='type-id-5'/>
</function-decl>
@@ -5650,7 +5650,7 @@
<return type-id='type-id-7'/>
</function-decl>
</abi-instr>
- <abi-instr address-size='64' path='Objects/capsule.c' comp-dir-path='/src' language='LANG_C11'>
+ <abi-instr address-size='64' path='Objects/capsule.c' comp-dir-path='/home/runner/work/cpython/cpython' language='LANG_C11'>
<typedef-decl name='PyCapsule_Destructor' type-id='type-id-308' filepath='./Include/pycapsule.h' line='23' column='1' id='type-id-309'/>
<function-decl name='PyImport_ImportModule' mangled-name='PyImport_ImportModule' filepath='./Include/import.h' line='51' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyImport_ImportModule'>
<parameter type-id='type-id-6'/>
@@ -5725,9 +5725,9 @@
<return type-id='type-id-3'/>
</function-type>
</abi-instr>
- <abi-instr address-size='64' path='Objects/cellobject.c' comp-dir-path='/src' language='LANG_C11'>
+ <abi-instr address-size='64' path='Objects/cellobject.c' comp-dir-path='/home/runner/work/cpython/cpython' language='LANG_C11'>
<var-decl name='PyCell_Type' type-id='type-id-264' mangled-name='PyCell_Type' visibility='default' filepath='./Include/cpython/cellobject.h' line='16' column='1' elf-symbol-id='PyCell_Type'/>
- <function-decl name='PyObject_RichCompare' mangled-name='PyObject_RichCompare' filepath='./Include/object.h' line='560' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyObject_RichCompare'>
+ <function-decl name='PyObject_RichCompare' mangled-name='PyObject_RichCompare' filepath='./Include/object.h' line='566' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyObject_RichCompare'>
<parameter type-id='type-id-4'/>
<parameter type-id='type-id-4'/>
<parameter type-id='type-id-5'/>
@@ -5747,7 +5747,7 @@
<return type-id='type-id-5'/>
</function-decl>
</abi-instr>
- <abi-instr address-size='64' path='Objects/classobject.c' comp-dir-path='/src' language='LANG_C11'>
+ <abi-instr address-size='64' path='Objects/classobject.c' comp-dir-path='/home/runner/work/cpython/cpython' language='LANG_C11'>
<var-decl name='PyMethod_Type' type-id='type-id-264' mangled-name='PyMethod_Type' visibility='default' filepath='./Include/cpython/classobject.h' line='20' column='1' elf-symbol-id='PyMethod_Type'/>
<var-decl name='PyInstanceMethod_Type' type-id='type-id-264' mangled-name='PyInstanceMethod_Type' visibility='default' filepath='./Include/cpython/classobject.h' line='49' column='1' elf-symbol-id='PyInstanceMethod_Type'/>
<function-decl name='_PyType_LookupRef' mangled-name='_PyType_LookupRef' filepath='./Include/cpython/object.h' line='278' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyType_LookupRef'>
@@ -5763,21 +5763,21 @@
<parameter type-id='type-id-1'/>
<return type-id='type-id-4'/>
</function-decl>
- <function-decl name='PyType_Ready' mangled-name='PyType_Ready' filepath='./Include/object.h' line='548' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyType_Ready'>
+ <function-decl name='PyType_Ready' mangled-name='PyType_Ready' filepath='./Include/object.h' line='554' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyType_Ready'>
<parameter type-id='type-id-1'/>
<return type-id='type-id-5'/>
</function-decl>
- <function-decl name='PyObject_GenericSetAttr' mangled-name='PyObject_GenericSetAttr' filepath='./Include/object.h' line='580' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyObject_GenericSetAttr'>
+ <function-decl name='PyObject_GenericSetAttr' mangled-name='PyObject_GenericSetAttr' filepath='./Include/object.h' line='586' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyObject_GenericSetAttr'>
<parameter type-id='type-id-4'/>
<parameter type-id='type-id-4'/>
<parameter type-id='type-id-4'/>
<return type-id='type-id-5'/>
</function-decl>
- <function-decl name='PyObject_Hash' mangled-name='PyObject_Hash' filepath='./Include/object.h' line='584' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyObject_Hash'>
+ <function-decl name='PyObject_Hash' mangled-name='PyObject_Hash' filepath='./Include/object.h' line='590' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyObject_Hash'>
<parameter type-id='type-id-4'/>
<return type-id='type-id-299'/>
</function-decl>
- <function-decl name='PyObject_ClearWeakRefs' mangled-name='PyObject_ClearWeakRefs' filepath='./Include/object.h' line='589' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyObject_ClearWeakRefs'>
+ <function-decl name='PyObject_ClearWeakRefs' mangled-name='PyObject_ClearWeakRefs' filepath='./Include/object.h' line='595' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyObject_ClearWeakRefs'>
<parameter type-id='type-id-4'/>
<return type-id='type-id-3'/>
</function-decl>
@@ -5803,7 +5803,7 @@
<return type-id='type-id-4'/>
</function-decl>
</abi-instr>
- <abi-instr address-size='64' path='Objects/codeobject.c' comp-dir-path='/src' language='LANG_C11'>
+ <abi-instr address-size='64' path='Objects/codeobject.c' comp-dir-path='/home/runner/work/cpython/cpython' language='LANG_C11'>
<class-decl name='_opaque' size-in-bits='192' is-struct='yes' visibility='default' filepath='./Include/cpython/code.h' line='284' column='1' id='type-id-313'>
<data-member access='public' layout-offset-in-bits='0'>
<var-decl name='computed_line' type-id='type-id-5' visibility='default' filepath='./Include/cpython/code.h' line='285' column='1'/>
@@ -5840,7 +5840,7 @@
<parameter type-id='type-id-4'/>
<return type-id='type-id-322'/>
</function-decl>
- <function-decl name='_Py_GetBaseOpcode' filepath='./Include/internal/pycore_code.h' line='588' column='1' visibility='default' binding='global' size-in-bits='64'>
+ <function-decl name='_Py_GetBaseOpcode' filepath='./Include/internal/pycore_code.h' line='589' column='1' visibility='default' binding='global' size-in-bits='64'>
<parameter type-id='type-id-323'/>
<parameter type-id='type-id-5'/>
<return type-id='type-id-5'/>
@@ -6003,7 +6003,7 @@
<return type-id='type-id-4'/>
</function-decl>
</abi-instr>
- <abi-instr address-size='64' path='Objects/complexobject.c' comp-dir-path='/src' language='LANG_C11'>
+ <abi-instr address-size='64' path='Objects/complexobject.c' comp-dir-path='/home/runner/work/cpython/cpython' language='LANG_C11'>
<pointer-type-def type-id='type-id-326' size-in-bits='64' id='type-id-327'/>
<var-decl name='PyComplex_Type' type-id='type-id-264' mangled-name='PyComplex_Type' visibility='default' filepath='./Include/complexobject.h' line='11' column='1' elf-symbol-id='PyComplex_Type'/>
<function-decl name='_Py_HashDouble' mangled-name='_Py_HashDouble' filepath='./Include/cpython/pyhash.h' line='30' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_HashDouble'>
@@ -6120,7 +6120,7 @@
<return type-id='type-id-4'/>
</function-type>
</abi-instr>
- <abi-instr address-size='64' path='Objects/descrobject.c' comp-dir-path='/src' language='LANG_C11'>
+ <abi-instr address-size='64' path='Objects/descrobject.c' comp-dir-path='/home/runner/work/cpython/cpython' language='LANG_C11'>
<pointer-type-def type-id='type-id-329' size-in-bits='64' id='type-id-330'/>
<function-decl name='_PyObject_FunctionStr' mangled-name='_PyObject_FunctionStr' filepath='./Include/cpython/object.h' line='301' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyObject_FunctionStr'>
<parameter type-id='type-id-4'/>
@@ -6181,18 +6181,18 @@
<parameter type-id='type-id-4'/>
<return type-id='type-id-3'/>
</function-decl>
- <function-decl name='_PyType_GetDocFromInternalDoc' filepath='./Include/internal/pycore_object.h' line='700' column='1' visibility='default' binding='global' size-in-bits='64'>
+ <function-decl name='_PyType_GetDocFromInternalDoc' filepath='./Include/internal/pycore_object.h' line='699' column='1' visibility='default' binding='global' size-in-bits='64'>
<parameter type-id='type-id-6'/>
<parameter type-id='type-id-6'/>
<return type-id='type-id-4'/>
</function-decl>
- <function-decl name='_PyType_GetTextSignatureFromInternalDoc' filepath='./Include/internal/pycore_object.h' line='701' column='1' visibility='default' binding='global' size-in-bits='64'>
+ <function-decl name='_PyType_GetTextSignatureFromInternalDoc' filepath='./Include/internal/pycore_object.h' line='700' column='1' visibility='default' binding='global' size-in-bits='64'>
<parameter type-id='type-id-6'/>
<parameter type-id='type-id-6'/>
<parameter type-id='type-id-5'/>
<return type-id='type-id-4'/>
</function-decl>
- <function-decl name='_PyObject_IsAbstract' filepath='./Include/internal/pycore_object.h' line='751' column='1' visibility='default' binding='global' size-in-bits='64'>
+ <function-decl name='_PyObject_IsAbstract' filepath='./Include/internal/pycore_object.h' line='750' column='1' visibility='default' binding='global' size-in-bits='64'>
<parameter type-id='type-id-4'/>
<return type-id='type-id-5'/>
</function-decl>
@@ -6203,11 +6203,11 @@
<parameter type-id='type-id-1'/>
<return type-id='type-id-4'/>
</function-decl>
- <function-decl name='PyType_GetQualName' mangled-name='PyType_GetQualName' filepath='./Include/object.h' line='520' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyType_GetQualName'>
+ <function-decl name='PyType_GetQualName' mangled-name='PyType_GetQualName' filepath='./Include/object.h' line='526' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyType_GetQualName'>
<parameter type-id='type-id-1'/>
<return type-id='type-id-4'/>
</function-decl>
- <function-decl name='PyObject_SetAttr' mangled-name='PyObject_SetAttr' filepath='./Include/object.h' line='571' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyObject_SetAttr'>
+ <function-decl name='PyObject_SetAttr' mangled-name='PyObject_SetAttr' filepath='./Include/object.h' line='577' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyObject_SetAttr'>
<parameter type-id='type-id-4'/>
<parameter type-id='type-id-4'/>
<parameter type-id='type-id-4'/>
@@ -6262,7 +6262,7 @@
<return type-id='type-id-4'/>
</function-decl>
</abi-instr>
- <abi-instr address-size='64' path='Objects/dictobject.c' comp-dir-path='/src' language='LANG_C11'>
+ <abi-instr address-size='64' path='Objects/dictobject.c' comp-dir-path='/home/runner/work/cpython/cpython' language='LANG_C11'>
<function-decl name='_PyObject_AssertFailed' mangled-name='_PyObject_AssertFailed' filepath='./Include/cpython/object.h' line='408' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyObject_AssertFailed'>
<parameter type-id='type-id-4'/>
<parameter type-id='type-id-6'/>
@@ -6286,12 +6286,12 @@
<var-decl name='PyDictRevIterKey_Type' type-id='type-id-264' mangled-name='PyDictRevIterKey_Type' visibility='default' filepath='./Include/dictobject.h' line='94' column='1' elf-symbol-id='PyDictRevIterKey_Type'/>
<var-decl name='PyDictRevIterItem_Type' type-id='type-id-264' mangled-name='PyDictRevIterItem_Type' visibility='default' filepath='./Include/dictobject.h' line='95' column='1' elf-symbol-id='PyDictRevIterItem_Type'/>
<var-decl name='PyDictRevIterValue_Type' type-id='type-id-264' mangled-name='PyDictRevIterValue_Type' visibility='default' filepath='./Include/dictobject.h' line='96' column='1' elf-symbol-id='PyDictRevIterValue_Type'/>
- <function-decl name='_PyType_AllocNoTrack' filepath='./Include/internal/pycore_object.h' line='696' column='1' visibility='default' binding='global' size-in-bits='64'>
+ <function-decl name='_PyType_AllocNoTrack' filepath='./Include/internal/pycore_object.h' line='695' column='1' visibility='default' binding='global' size-in-bits='64'>
<parameter type-id='type-id-1'/>
<parameter type-id='type-id-7'/>
<return type-id='type-id-4'/>
</function-decl>
- <function-decl name='_PyObject_ComputedDictPointer' filepath='./Include/internal/pycore_object.h' line='745' column='1' visibility='default' binding='global' size-in-bits='64'>
+ <function-decl name='_PyObject_ComputedDictPointer' filepath='./Include/internal/pycore_object.h' line='744' column='1' visibility='default' binding='global' size-in-bits='64'>
<parameter type-id='type-id-4'/>
<return type-id='type-id-236'/>
</function-decl>
@@ -6315,181 +6315,181 @@
<function-decl name='PyInterpreterState_Get' mangled-name='PyInterpreterState_Get' filepath='./Include/pystate.h' line='26' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyInterpreterState_Get'>
<return type-id='type-id-27'/>
</function-decl>
- <function-decl name='_PyDict_NewPresized' mangled-name='_PyDict_NewPresized' filepath='Objects/dictobject.c' line='2129' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyDict_NewPresized'>
- <parameter type-id='type-id-7' name='minused' filepath='Objects/dictobject.c' line='2129' column='1'/>
+ <function-decl name='_PyDict_NewPresized' mangled-name='_PyDict_NewPresized' filepath='Objects/dictobject.c' line='2131' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyDict_NewPresized'>
+ <parameter type-id='type-id-7' name='minused' filepath='Objects/dictobject.c' line='2131' column='1'/>
<return type-id='type-id-4'/>
</function-decl>
- <function-decl name='_PyDict_GetItem_KnownHash' mangled-name='_PyDict_GetItem_KnownHash' filepath='Objects/dictobject.c' line='2257' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyDict_GetItem_KnownHash'>
- <parameter type-id='type-id-4' name='op' filepath='Objects/dictobject.c' line='2257' column='1'/>
- <parameter type-id='type-id-4' name='key' filepath='Objects/dictobject.c' line='2257' column='1'/>
- <parameter type-id='type-id-299' name='hash' filepath='Objects/dictobject.c' line='2257' column='1'/>
+ <function-decl name='_PyDict_GetItem_KnownHash' mangled-name='_PyDict_GetItem_KnownHash' filepath='Objects/dictobject.c' line='2259' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyDict_GetItem_KnownHash'>
+ <parameter type-id='type-id-4' name='op' filepath='Objects/dictobject.c' line='2259' column='1'/>
+ <parameter type-id='type-id-4' name='key' filepath='Objects/dictobject.c' line='2259' column='1'/>
+ <parameter type-id='type-id-299' name='hash' filepath='Objects/dictobject.c' line='2259' column='1'/>
<return type-id='type-id-4'/>
</function-decl>
- <function-decl name='_PyDict_GetItemRef_KnownHash_LockHeld' mangled-name='_PyDict_GetItemRef_KnownHash_LockHeld' filepath='Objects/dictobject.c' line='2283' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyDict_GetItemRef_KnownHash_LockHeld'>
- <parameter type-id='type-id-334' name='op' filepath='Objects/dictobject.c' line='2283' column='1'/>
- <parameter type-id='type-id-4' name='key' filepath='Objects/dictobject.c' line='2283' column='1'/>
- <parameter type-id='type-id-299' name='hash' filepath='Objects/dictobject.c' line='2284' column='1'/>
- <parameter type-id='type-id-236' name='result' filepath='Objects/dictobject.c' line='2284' column='1'/>
+ <function-decl name='_PyDict_GetItemRef_KnownHash_LockHeld' mangled-name='_PyDict_GetItemRef_KnownHash_LockHeld' filepath='Objects/dictobject.c' line='2285' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyDict_GetItemRef_KnownHash_LockHeld'>
+ <parameter type-id='type-id-334' name='op' filepath='Objects/dictobject.c' line='2285' column='1'/>
+ <parameter type-id='type-id-4' name='key' filepath='Objects/dictobject.c' line='2285' column='1'/>
+ <parameter type-id='type-id-299' name='hash' filepath='Objects/dictobject.c' line='2286' column='1'/>
+ <parameter type-id='type-id-236' name='result' filepath='Objects/dictobject.c' line='2286' column='1'/>
<return type-id='type-id-5'/>
</function-decl>
- <function-decl name='_PyDict_GetItemStringWithError' mangled-name='_PyDict_GetItemStringWithError' filepath='Objects/dictobject.c' line='2431' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyDict_GetItemStringWithError'>
- <parameter type-id='type-id-4' name='v' filepath='Objects/dictobject.c' line='2431' column='1'/>
- <parameter type-id='type-id-6' name='key' filepath='Objects/dictobject.c' line='2431' column='1'/>
+ <function-decl name='_PyDict_GetItemStringWithError' mangled-name='_PyDict_GetItemStringWithError' filepath='Objects/dictobject.c' line='2433' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyDict_GetItemStringWithError'>
+ <parameter type-id='type-id-4' name='v' filepath='Objects/dictobject.c' line='2433' column='1'/>
+ <parameter type-id='type-id-6' name='key' filepath='Objects/dictobject.c' line='2433' column='1'/>
<return type-id='type-id-4'/>
</function-decl>
- <function-decl name='_PyDict_LoadGlobal' mangled-name='_PyDict_LoadGlobal' filepath='Objects/dictobject.c' line='2456' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyDict_LoadGlobal'>
- <parameter type-id='type-id-334' name='globals' filepath='Objects/dictobject.c' line='2456' column='1'/>
- <parameter type-id='type-id-334' name='builtins' filepath='Objects/dictobject.c' line='2456' column='1'/>
- <parameter type-id='type-id-4' name='key' filepath='Objects/dictobject.c' line='2456' column='1'/>
+ <function-decl name='_PyDict_LoadGlobal' mangled-name='_PyDict_LoadGlobal' filepath='Objects/dictobject.c' line='2458' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyDict_LoadGlobal'>
+ <parameter type-id='type-id-334' name='globals' filepath='Objects/dictobject.c' line='2458' column='1'/>
+ <parameter type-id='type-id-334' name='builtins' filepath='Objects/dictobject.c' line='2458' column='1'/>
+ <parameter type-id='type-id-4' name='key' filepath='Objects/dictobject.c' line='2458' column='1'/>
<return type-id='type-id-4'/>
</function-decl>
- <function-decl name='_PyDict_SetItem_Take2' mangled-name='_PyDict_SetItem_Take2' filepath='Objects/dictobject.c' line='2506' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyDict_SetItem_Take2'>
- <parameter type-id='type-id-334' name='mp' filepath='Objects/dictobject.c' line='2506' column='1'/>
- <parameter type-id='type-id-4' name='key' filepath='Objects/dictobject.c' line='2506' column='1'/>
- <parameter type-id='type-id-4' name='value' filepath='Objects/dictobject.c' line='2506' column='1'/>
+ <function-decl name='_PyDict_SetItem_Take2' mangled-name='_PyDict_SetItem_Take2' filepath='Objects/dictobject.c' line='2508' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyDict_SetItem_Take2'>
+ <parameter type-id='type-id-334' name='mp' filepath='Objects/dictobject.c' line='2508' column='1'/>
+ <parameter type-id='type-id-4' name='key' filepath='Objects/dictobject.c' line='2508' column='1'/>
+ <parameter type-id='type-id-4' name='value' filepath='Objects/dictobject.c' line='2508' column='1'/>
<return type-id='type-id-5'/>
</function-decl>
- <function-decl name='_PyDict_SetItem_KnownHash_LockHeld' mangled-name='_PyDict_SetItem_KnownHash_LockHeld' filepath='Objects/dictobject.c' line='2545' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyDict_SetItem_KnownHash_LockHeld'>
- <parameter type-id='type-id-334' name='mp' filepath='Objects/dictobject.c' line='2545' column='1'/>
- <parameter type-id='type-id-4' name='key' filepath='Objects/dictobject.c' line='2545' column='1'/>
- <parameter type-id='type-id-4' name='value' filepath='Objects/dictobject.c' line='2545' column='1'/>
- <parameter type-id='type-id-299' name='hash' filepath='Objects/dictobject.c' line='2546' column='1'/>
+ <function-decl name='_PyDict_SetItem_KnownHash_LockHeld' mangled-name='_PyDict_SetItem_KnownHash_LockHeld' filepath='Objects/dictobject.c' line='2547' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyDict_SetItem_KnownHash_LockHeld'>
+ <parameter type-id='type-id-334' name='mp' filepath='Objects/dictobject.c' line='2547' column='1'/>
+ <parameter type-id='type-id-4' name='key' filepath='Objects/dictobject.c' line='2547' column='1'/>
+ <parameter type-id='type-id-4' name='value' filepath='Objects/dictobject.c' line='2547' column='1'/>
+ <parameter type-id='type-id-299' name='hash' filepath='Objects/dictobject.c' line='2548' column='1'/>
<return type-id='type-id-5'/>
</function-decl>
- <function-decl name='_PyDict_SetItem_KnownHash' mangled-name='_PyDict_SetItem_KnownHash' filepath='Objects/dictobject.c' line='2557' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyDict_SetItem_KnownHash'>
- <parameter type-id='type-id-4' name='op' filepath='Objects/dictobject.c' line='2557' column='1'/>
- <parameter type-id='type-id-4' name='key' filepath='Objects/dictobject.c' line='2557' column='1'/>
- <parameter type-id='type-id-4' name='value' filepath='Objects/dictobject.c' line='2557' column='1'/>
- <parameter type-id='type-id-299' name='hash' filepath='Objects/dictobject.c' line='2558' column='1'/>
+ <function-decl name='_PyDict_SetItem_KnownHash' mangled-name='_PyDict_SetItem_KnownHash' filepath='Objects/dictobject.c' line='2559' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyDict_SetItem_KnownHash'>
+ <parameter type-id='type-id-4' name='op' filepath='Objects/dictobject.c' line='2559' column='1'/>
+ <parameter type-id='type-id-4' name='key' filepath='Objects/dictobject.c' line='2559' column='1'/>
+ <parameter type-id='type-id-4' name='value' filepath='Objects/dictobject.c' line='2559' column='1'/>
+ <parameter type-id='type-id-299' name='hash' filepath='Objects/dictobject.c' line='2560' column='1'/>
<return type-id='type-id-5'/>
</function-decl>
- <function-decl name='PyDict_DelItem' mangled-name='PyDict_DelItem' filepath='Objects/dictobject.c' line='2638' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyDict_DelItem'>
- <parameter type-id='type-id-4' name='op' filepath='Objects/dictobject.c' line='2638' column='1'/>
- <parameter type-id='type-id-4' name='key' filepath='Objects/dictobject.c' line='2638' column='1'/>
+ <function-decl name='PyDict_DelItem' mangled-name='PyDict_DelItem' filepath='Objects/dictobject.c' line='2640' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyDict_DelItem'>
+ <parameter type-id='type-id-4' name='op' filepath='Objects/dictobject.c' line='2640' column='1'/>
+ <parameter type-id='type-id-4' name='key' filepath='Objects/dictobject.c' line='2640' column='1'/>
<return type-id='type-id-5'/>
</function-decl>
- <function-decl name='_PyDict_DelItem_KnownHash' mangled-name='_PyDict_DelItem_KnownHash' filepath='Objects/dictobject.c' line='2682' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyDict_DelItem_KnownHash'>
- <parameter type-id='type-id-4' name='op' filepath='Objects/dictobject.c' line='2682' column='1'/>
- <parameter type-id='type-id-4' name='key' filepath='Objects/dictobject.c' line='2682' column='1'/>
- <parameter type-id='type-id-299' name='hash' filepath='Objects/dictobject.c' line='2682' column='1'/>
+ <function-decl name='_PyDict_DelItem_KnownHash' mangled-name='_PyDict_DelItem_KnownHash' filepath='Objects/dictobject.c' line='2684' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyDict_DelItem_KnownHash'>
+ <parameter type-id='type-id-4' name='op' filepath='Objects/dictobject.c' line='2684' column='1'/>
+ <parameter type-id='type-id-4' name='key' filepath='Objects/dictobject.c' line='2684' column='1'/>
+ <parameter type-id='type-id-299' name='hash' filepath='Objects/dictobject.c' line='2684' column='1'/>
<return type-id='type-id-5'/>
</function-decl>
- <function-decl name='_PyDict_DelItemIf' mangled-name='_PyDict_DelItemIf' filepath='Objects/dictobject.c' line='2737' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyDict_DelItemIf'>
- <parameter type-id='type-id-4' name='op' filepath='Objects/dictobject.c' line='2737' column='1'/>
- <parameter type-id='type-id-4' name='key' filepath='Objects/dictobject.c' line='2737' column='1'/>
- <parameter type-id='type-id-335' name='predicate' filepath='Objects/dictobject.c' line='2738' column='1'/>
- <parameter type-id='type-id-29' name='arg' filepath='Objects/dictobject.c' line='2739' column='1'/>
+ <function-decl name='_PyDict_DelItemIf' mangled-name='_PyDict_DelItemIf' filepath='Objects/dictobject.c' line='2739' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyDict_DelItemIf'>
+ <parameter type-id='type-id-4' name='op' filepath='Objects/dictobject.c' line='2739' column='1'/>
+ <parameter type-id='type-id-4' name='key' filepath='Objects/dictobject.c' line='2739' column='1'/>
+ <parameter type-id='type-id-335' name='predicate' filepath='Objects/dictobject.c' line='2740' column='1'/>
+ <parameter type-id='type-id-29' name='arg' filepath='Objects/dictobject.c' line='2741' column='1'/>
<return type-id='type-id-5'/>
</function-decl>
- <function-decl name='PyDict_Clear' mangled-name='PyDict_Clear' filepath='Objects/dictobject.c' line='2799' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyDict_Clear'>
- <parameter type-id='type-id-4' name='op' filepath='Objects/dictobject.c' line='2799' column='1'/>
+ <function-decl name='PyDict_Clear' mangled-name='PyDict_Clear' filepath='Objects/dictobject.c' line='2801' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyDict_Clear'>
+ <parameter type-id='type-id-4' name='op' filepath='Objects/dictobject.c' line='2801' column='1'/>
<return type-id='type-id-3'/>
</function-decl>
- <function-decl name='PyDict_Pop' mangled-name='PyDict_Pop' filepath='Objects/dictobject.c' line='2979' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyDict_Pop'>
- <parameter type-id='type-id-4' name='op' filepath='Objects/dictobject.c' line='2979' column='1'/>
- <parameter type-id='type-id-4' name='key' filepath='Objects/dictobject.c' line='2979' column='1'/>
- <parameter type-id='type-id-236' name='result' filepath='Objects/dictobject.c' line='2979' column='1'/>
+ <function-decl name='PyDict_Pop' mangled-name='PyDict_Pop' filepath='Objects/dictobject.c' line='2981' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyDict_Pop'>
+ <parameter type-id='type-id-4' name='op' filepath='Objects/dictobject.c' line='2981' column='1'/>
+ <parameter type-id='type-id-4' name='key' filepath='Objects/dictobject.c' line='2981' column='1'/>
+ <parameter type-id='type-id-236' name='result' filepath='Objects/dictobject.c' line='2981' column='1'/>
<return type-id='type-id-5'/>
</function-decl>
- <function-decl name='PyDict_PopString' mangled-name='PyDict_PopString' filepath='Objects/dictobject.c' line='2991' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyDict_PopString'>
- <parameter type-id='type-id-4' name='op' filepath='Objects/dictobject.c' line='2991' column='1'/>
- <parameter type-id='type-id-6' name='key' filepath='Objects/dictobject.c' line='2991' column='1'/>
- <parameter type-id='type-id-236' name='result' filepath='Objects/dictobject.c' line='2991' column='1'/>
+ <function-decl name='PyDict_PopString' mangled-name='PyDict_PopString' filepath='Objects/dictobject.c' line='2993' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyDict_PopString'>
+ <parameter type-id='type-id-4' name='op' filepath='Objects/dictobject.c' line='2993' column='1'/>
+ <parameter type-id='type-id-6' name='key' filepath='Objects/dictobject.c' line='2993' column='1'/>
+ <parameter type-id='type-id-236' name='result' filepath='Objects/dictobject.c' line='2993' column='1'/>
<return type-id='type-id-5'/>
</function-decl>
- <function-decl name='_PyDict_Pop' mangled-name='_PyDict_Pop' filepath='Objects/dictobject.c' line='3008' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyDict_Pop'>
- <parameter type-id='type-id-4' name='dict' filepath='Objects/dictobject.c' line='3008' column='1'/>
- <parameter type-id='type-id-4' name='key' filepath='Objects/dictobject.c' line='3008' column='1'/>
- <parameter type-id='type-id-4' name='default_value' filepath='Objects/dictobject.c' line='3008' column='1'/>
+ <function-decl name='_PyDict_Pop' mangled-name='_PyDict_Pop' filepath='Objects/dictobject.c' line='3010' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyDict_Pop'>
+ <parameter type-id='type-id-4' name='dict' filepath='Objects/dictobject.c' line='3010' column='1'/>
+ <parameter type-id='type-id-4' name='key' filepath='Objects/dictobject.c' line='3010' column='1'/>
+ <parameter type-id='type-id-4' name='default_value' filepath='Objects/dictobject.c' line='3010' column='1'/>
<return type-id='type-id-4'/>
</function-decl>
- <function-decl name='PyDict_MergeFromSeq2' mangled-name='PyDict_MergeFromSeq2' filepath='Objects/dictobject.c' line='3672' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyDict_MergeFromSeq2'>
- <parameter type-id='type-id-4' name='d' filepath='Objects/dictobject.c' line='3672' column='1'/>
- <parameter type-id='type-id-4' name='seq2' filepath='Objects/dictobject.c' line='3672' column='1'/>
- <parameter type-id='type-id-5' name='override' filepath='Objects/dictobject.c' line='3672' column='1'/>
+ <function-decl name='PyDict_MergeFromSeq2' mangled-name='PyDict_MergeFromSeq2' filepath='Objects/dictobject.c' line='3674' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyDict_MergeFromSeq2'>
+ <parameter type-id='type-id-4' name='d' filepath='Objects/dictobject.c' line='3674' column='1'/>
+ <parameter type-id='type-id-4' name='seq2' filepath='Objects/dictobject.c' line='3674' column='1'/>
+ <parameter type-id='type-id-5' name='override' filepath='Objects/dictobject.c' line='3674' column='1'/>
<return type-id='type-id-5'/>
</function-decl>
- <function-decl name='PyDict_Merge' mangled-name='PyDict_Merge' filepath='Objects/dictobject.c' line='3891' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyDict_Merge'>
- <parameter type-id='type-id-4' name='a' filepath='Objects/dictobject.c' line='3891' column='1'/>
- <parameter type-id='type-id-4' name='b' filepath='Objects/dictobject.c' line='3891' column='1'/>
- <parameter type-id='type-id-5' name='override' filepath='Objects/dictobject.c' line='3891' column='1'/>
+ <function-decl name='PyDict_Merge' mangled-name='PyDict_Merge' filepath='Objects/dictobject.c' line='3893' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyDict_Merge'>
+ <parameter type-id='type-id-4' name='a' filepath='Objects/dictobject.c' line='3893' column='1'/>
+ <parameter type-id='type-id-4' name='b' filepath='Objects/dictobject.c' line='3893' column='1'/>
+ <parameter type-id='type-id-5' name='override' filepath='Objects/dictobject.c' line='3893' column='1'/>
<return type-id='type-id-5'/>
</function-decl>
- <function-decl name='_PyDict_MergeEx' mangled-name='_PyDict_MergeEx' filepath='Objects/dictobject.c' line='3899' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyDict_MergeEx'>
- <parameter type-id='type-id-4' name='a' filepath='Objects/dictobject.c' line='3899' column='1'/>
- <parameter type-id='type-id-4' name='b' filepath='Objects/dictobject.c' line='3899' column='1'/>
- <parameter type-id='type-id-5' name='override' filepath='Objects/dictobject.c' line='3899' column='1'/>
+ <function-decl name='_PyDict_MergeEx' mangled-name='_PyDict_MergeEx' filepath='Objects/dictobject.c' line='3901' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyDict_MergeEx'>
+ <parameter type-id='type-id-4' name='a' filepath='Objects/dictobject.c' line='3901' column='1'/>
+ <parameter type-id='type-id-4' name='b' filepath='Objects/dictobject.c' line='3901' column='1'/>
+ <parameter type-id='type-id-5' name='override' filepath='Objects/dictobject.c' line='3901' column='1'/>
<return type-id='type-id-5'/>
</function-decl>
- <function-decl name='PyDict_SetDefaultRef' mangled-name='PyDict_SetDefaultRef' filepath='Objects/dictobject.c' line='4325' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyDict_SetDefaultRef'>
- <parameter type-id='type-id-4' name='d' filepath='Objects/dictobject.c' line='4325' column='1'/>
- <parameter type-id='type-id-4' name='key' filepath='Objects/dictobject.c' line='4325' column='1'/>
- <parameter type-id='type-id-4' name='default_value' filepath='Objects/dictobject.c' line='4325' column='1'/>
- <parameter type-id='type-id-236' name='result' filepath='Objects/dictobject.c' line='4326' column='1'/>
+ <function-decl name='PyDict_SetDefaultRef' mangled-name='PyDict_SetDefaultRef' filepath='Objects/dictobject.c' line='4327' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyDict_SetDefaultRef'>
+ <parameter type-id='type-id-4' name='d' filepath='Objects/dictobject.c' line='4327' column='1'/>
+ <parameter type-id='type-id-4' name='key' filepath='Objects/dictobject.c' line='4327' column='1'/>
+ <parameter type-id='type-id-4' name='default_value' filepath='Objects/dictobject.c' line='4327' column='1'/>
+ <parameter type-id='type-id-236' name='result' filepath='Objects/dictobject.c' line='4328' column='1'/>
<return type-id='type-id-5'/>
</function-decl>
- <function-decl name='PyDict_SetDefault' mangled-name='PyDict_SetDefault' filepath='Objects/dictobject.c' line='4336' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyDict_SetDefault'>
- <parameter type-id='type-id-4' name='d' filepath='Objects/dictobject.c' line='4336' column='1'/>
- <parameter type-id='type-id-4' name='key' filepath='Objects/dictobject.c' line='4336' column='1'/>
- <parameter type-id='type-id-4' name='defaultobj' filepath='Objects/dictobject.c' line='4336' column='1'/>
+ <function-decl name='PyDict_SetDefault' mangled-name='PyDict_SetDefault' filepath='Objects/dictobject.c' line='4338' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyDict_SetDefault'>
+ <parameter type-id='type-id-4' name='d' filepath='Objects/dictobject.c' line='4338' column='1'/>
+ <parameter type-id='type-id-4' name='key' filepath='Objects/dictobject.c' line='4338' column='1'/>
+ <parameter type-id='type-id-4' name='defaultobj' filepath='Objects/dictobject.c' line='4338' column='1'/>
<return type-id='type-id-4'/>
</function-decl>
- <function-decl name='_PyDict_SizeOf' mangled-name='_PyDict_SizeOf' filepath='Objects/dictobject.c' line='4562' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyDict_SizeOf'>
- <parameter type-id='type-id-334' name='mp' filepath='Objects/dictobject.c' line='4562' column='1'/>
+ <function-decl name='_PyDict_SizeOf' mangled-name='_PyDict_SizeOf' filepath='Objects/dictobject.c' line='4564' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyDict_SizeOf'>
+ <parameter type-id='type-id-334' name='mp' filepath='Objects/dictobject.c' line='4564' column='1'/>
<return type-id='type-id-7'/>
</function-decl>
- <function-decl name='PyDict_ContainsString' mangled-name='PyDict_ContainsString' filepath='Objects/dictobject.c' line='4669' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyDict_ContainsString'>
- <parameter type-id='type-id-4' name='op' filepath='Objects/dictobject.c' line='4669' column='1'/>
- <parameter type-id='type-id-6' name='key' filepath='Objects/dictobject.c' line='4669' column='1'/>
+ <function-decl name='PyDict_ContainsString' mangled-name='PyDict_ContainsString' filepath='Objects/dictobject.c' line='4671' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyDict_ContainsString'>
+ <parameter type-id='type-id-4' name='op' filepath='Objects/dictobject.c' line='4671' column='1'/>
+ <parameter type-id='type-id-6' name='key' filepath='Objects/dictobject.c' line='4671' column='1'/>
<return type-id='type-id-5'/>
</function-decl>
- <function-decl name='PyDict_GetItemString' mangled-name='PyDict_GetItemString' filepath='Objects/dictobject.c' line='4871' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyDict_GetItemString'>
- <parameter type-id='type-id-4' name='v' filepath='Objects/dictobject.c' line='4871' column='1'/>
- <parameter type-id='type-id-6' name='key' filepath='Objects/dictobject.c' line='4871' column='1'/>
+ <function-decl name='PyDict_GetItemString' mangled-name='PyDict_GetItemString' filepath='Objects/dictobject.c' line='4873' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyDict_GetItemString'>
+ <parameter type-id='type-id-4' name='v' filepath='Objects/dictobject.c' line='4873' column='1'/>
+ <parameter type-id='type-id-6' name='key' filepath='Objects/dictobject.c' line='4873' column='1'/>
<return type-id='type-id-4'/>
</function-decl>
- <function-decl name='PyDict_GetItemStringRef' mangled-name='PyDict_GetItemStringRef' filepath='Objects/dictobject.c' line='4889' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyDict_GetItemStringRef'>
- <parameter type-id='type-id-4' name='v' filepath='Objects/dictobject.c' line='4889' column='1'/>
- <parameter type-id='type-id-6' name='key' filepath='Objects/dictobject.c' line='4889' column='1'/>
- <parameter type-id='type-id-236' name='result' filepath='Objects/dictobject.c' line='4889' column='1'/>
+ <function-decl name='PyDict_GetItemStringRef' mangled-name='PyDict_GetItemStringRef' filepath='Objects/dictobject.c' line='4891' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyDict_GetItemStringRef'>
+ <parameter type-id='type-id-4' name='v' filepath='Objects/dictobject.c' line='4891' column='1'/>
+ <parameter type-id='type-id-6' name='key' filepath='Objects/dictobject.c' line='4891' column='1'/>
+ <parameter type-id='type-id-236' name='result' filepath='Objects/dictobject.c' line='4891' column='1'/>
<return type-id='type-id-5'/>
</function-decl>
- <function-decl name='PyDict_DelItemString' mangled-name='PyDict_DelItemString' filepath='Objects/dictobject.c' line='4936' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyDict_DelItemString'>
- <parameter type-id='type-id-4' name='v' filepath='Objects/dictobject.c' line='4936' column='1'/>
- <parameter type-id='type-id-6' name='key' filepath='Objects/dictobject.c' line='4936' column='1'/>
+ <function-decl name='PyDict_DelItemString' mangled-name='PyDict_DelItemString' filepath='Objects/dictobject.c' line='4938' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyDict_DelItemString'>
+ <parameter type-id='type-id-4' name='v' filepath='Objects/dictobject.c' line='4938' column='1'/>
+ <parameter type-id='type-id-6' name='key' filepath='Objects/dictobject.c' line='4938' column='1'/>
<return type-id='type-id-5'/>
</function-decl>
- <function-decl name='PyObject_VisitManagedDict' mangled-name='PyObject_VisitManagedDict' filepath='Objects/dictobject.c' line='7061' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyObject_VisitManagedDict'>
- <parameter type-id='type-id-4' name='obj' filepath='Objects/dictobject.c' line='7061' column='1'/>
- <parameter type-id='type-id-336' name='visit' filepath='Objects/dictobject.c' line='7061' column='1'/>
- <parameter type-id='type-id-29' name='arg' filepath='Objects/dictobject.c' line='7061' column='1'/>
+ <function-decl name='PyObject_VisitManagedDict' mangled-name='PyObject_VisitManagedDict' filepath='Objects/dictobject.c' line='7063' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyObject_VisitManagedDict'>
+ <parameter type-id='type-id-4' name='obj' filepath='Objects/dictobject.c' line='7063' column='1'/>
+ <parameter type-id='type-id-336' name='visit' filepath='Objects/dictobject.c' line='7063' column='1'/>
+ <parameter type-id='type-id-29' name='arg' filepath='Objects/dictobject.c' line='7063' column='1'/>
<return type-id='type-id-5'/>
</function-decl>
- <function-decl name='_PyObject_SetManagedDict' mangled-name='_PyObject_SetManagedDict' filepath='Objects/dictobject.c' line='7099' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyObject_SetManagedDict'>
- <parameter type-id='type-id-4' name='obj' filepath='Objects/dictobject.c' line='7099' column='1'/>
- <parameter type-id='type-id-4' name='new_dict' filepath='Objects/dictobject.c' line='7099' column='1'/>
+ <function-decl name='_PyObject_SetManagedDict' mangled-name='_PyObject_SetManagedDict' filepath='Objects/dictobject.c' line='7101' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyObject_SetManagedDict'>
+ <parameter type-id='type-id-4' name='obj' filepath='Objects/dictobject.c' line='7101' column='1'/>
+ <parameter type-id='type-id-4' name='new_dict' filepath='Objects/dictobject.c' line='7101' column='1'/>
<return type-id='type-id-5'/>
</function-decl>
- <function-decl name='PyObject_ClearManagedDict' mangled-name='PyObject_ClearManagedDict' filepath='Objects/dictobject.c' line='7162' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyObject_ClearManagedDict'>
- <parameter type-id='type-id-4' name='obj' filepath='Objects/dictobject.c' line='7162' column='1'/>
+ <function-decl name='PyObject_ClearManagedDict' mangled-name='PyObject_ClearManagedDict' filepath='Objects/dictobject.c' line='7164' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyObject_ClearManagedDict'>
+ <parameter type-id='type-id-4' name='obj' filepath='Objects/dictobject.c' line='7164' column='1'/>
<return type-id='type-id-3'/>
</function-decl>
- <function-decl name='PyDict_Watch' mangled-name='PyDict_Watch' filepath='Objects/dictobject.c' line='7341' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyDict_Watch'>
- <parameter type-id='type-id-5' name='watcher_id' filepath='Objects/dictobject.c' line='7341' column='1'/>
- <parameter type-id='type-id-4' name='dict' filepath='Objects/dictobject.c' line='7341' column='1'/>
+ <function-decl name='PyDict_Watch' mangled-name='PyDict_Watch' filepath='Objects/dictobject.c' line='7350' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyDict_Watch'>
+ <parameter type-id='type-id-5' name='watcher_id' filepath='Objects/dictobject.c' line='7350' column='1'/>
+ <parameter type-id='type-id-4' name='dict' filepath='Objects/dictobject.c' line='7350' column='1'/>
<return type-id='type-id-5'/>
</function-decl>
- <function-decl name='PyDict_Unwatch' mangled-name='PyDict_Unwatch' filepath='Objects/dictobject.c' line='7356' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyDict_Unwatch'>
- <parameter type-id='type-id-5' name='watcher_id' filepath='Objects/dictobject.c' line='7356' column='1'/>
- <parameter type-id='type-id-4' name='dict' filepath='Objects/dictobject.c' line='7356' column='1'/>
+ <function-decl name='PyDict_Unwatch' mangled-name='PyDict_Unwatch' filepath='Objects/dictobject.c' line='7365' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyDict_Unwatch'>
+ <parameter type-id='type-id-5' name='watcher_id' filepath='Objects/dictobject.c' line='7365' column='1'/>
+ <parameter type-id='type-id-4' name='dict' filepath='Objects/dictobject.c' line='7365' column='1'/>
<return type-id='type-id-5'/>
</function-decl>
- <function-decl name='PyDict_AddWatcher' mangled-name='PyDict_AddWatcher' filepath='Objects/dictobject.c' line='7371' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyDict_AddWatcher'>
- <parameter type-id='type-id-337' name='callback' filepath='Objects/dictobject.c' line='7371' column='1'/>
+ <function-decl name='PyDict_AddWatcher' mangled-name='PyDict_AddWatcher' filepath='Objects/dictobject.c' line='7380' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyDict_AddWatcher'>
+ <parameter type-id='type-id-337' name='callback' filepath='Objects/dictobject.c' line='7380' column='1'/>
<return type-id='type-id-5'/>
</function-decl>
- <function-decl name='PyDict_ClearWatcher' mangled-name='PyDict_ClearWatcher' filepath='Objects/dictobject.c' line='7388' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyDict_ClearWatcher'>
- <parameter type-id='type-id-5' name='watcher_id' filepath='Objects/dictobject.c' line='7388' column='1'/>
+ <function-decl name='PyDict_ClearWatcher' mangled-name='PyDict_ClearWatcher' filepath='Objects/dictobject.c' line='7397' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyDict_ClearWatcher'>
+ <parameter type-id='type-id-5' name='watcher_id' filepath='Objects/dictobject.c' line='7397' column='1'/>
<return type-id='type-id-5'/>
</function-decl>
<function-type size-in-bits='64' id='type-id-338'>
@@ -6498,7 +6498,7 @@
<return type-id='type-id-5'/>
</function-type>
</abi-instr>
- <abi-instr address-size='64' path='Objects/enumobject.c' comp-dir-path='/src' language='LANG_C11'>
+ <abi-instr address-size='64' path='Objects/enumobject.c' comp-dir-path='/home/runner/work/cpython/cpython' language='LANG_C11'>
<var-decl name='PyEnum_Type' type-id='type-id-264' mangled-name='PyEnum_Type' visibility='default' filepath='./Include/enumobject.h' line='10' column='1' elf-symbol-id='PyEnum_Type'/>
<var-decl name='PyReversed_Type' type-id='type-id-264' mangled-name='PyReversed_Type' visibility='default' filepath='./Include/enumobject.h' line='11' column='1' elf-symbol-id='PyReversed_Type'/>
<function-decl name='_PyUnicode_EqualToASCIIString' mangled-name='_PyUnicode_EqualToASCIIString' filepath='./Include/internal/pycore_unicodeobject.h' line='225' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyUnicode_EqualToASCIIString'>
@@ -6507,7 +6507,7 @@
<return type-id='type-id-5'/>
</function-decl>
</abi-instr>
- <abi-instr address-size='64' path='Objects/exceptions.c' comp-dir-path='/src' language='LANG_C11'>
+ <abi-instr address-size='64' path='Objects/exceptions.c' comp-dir-path='/home/runner/work/cpython/cpython' language='LANG_C11'>
<qualified-type-def type-id='type-id-17' const='yes' id='type-id-339'/>
<pointer-type-def type-id='type-id-339' size-in-bits='64' id='type-id-126'/>
<var-decl name='PyExc_PythonFinalizationError' type-id='type-id-4' mangled-name='PyExc_PythonFinalizationError' visibility='default' filepath='./Include/cpython/pyerrors.h' line='129' column='1' elf-symbol-id='PyExc_PythonFinalizationError'/>
@@ -6579,11 +6579,11 @@
<parameter type-id='type-id-4'/>
<return type-id='type-id-4'/>
</function-decl>
- <function-decl name='PyObject_Repr' mangled-name='PyObject_Repr' filepath='./Include/object.h' line='556' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyObject_Repr'>
+ <function-decl name='PyObject_Repr' mangled-name='PyObject_Repr' filepath='./Include/object.h' line='562' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyObject_Repr'>
<parameter type-id='type-id-4'/>
<return type-id='type-id-4'/>
</function-decl>
- <function-decl name='PyObject_GenericSetDict' mangled-name='PyObject_GenericSetDict' filepath='./Include/object.h' line='582' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyObject_GenericSetDict'>
+ <function-decl name='PyObject_GenericSetDict' mangled-name='PyObject_GenericSetDict' filepath='./Include/object.h' line='588' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyObject_GenericSetDict'>
<parameter type-id='type-id-4'/>
<parameter type-id='type-id-4'/>
<parameter type-id='type-id-29'/>
@@ -6848,7 +6848,7 @@
<return type-id='type-id-4'/>
</function-decl>
</abi-instr>
- <abi-instr address-size='64' path='Objects/fileobject.c' comp-dir-path='/src' language='LANG_C11'>
+ <abi-instr address-size='64' path='Objects/fileobject.c' comp-dir-path='/home/runner/work/cpython/cpython' language='LANG_C11'>
<var-decl name='PyStdPrinter_Type' type-id='type-id-264' mangled-name='PyStdPrinter_Type' visibility='default' filepath='./Include/cpython/fileobject.h' line='10' column='1' elf-symbol-id='PyStdPrinter_Type'/>
<function-decl name='_Py_write' mangled-name='_Py_write' filepath='./Include/internal/pycore_fileutils.h' line='139' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_write'>
<parameter type-id='type-id-5'/>
@@ -6937,7 +6937,7 @@
<return type-id='type-id-4'/>
</function-decl>
</abi-instr>
- <abi-instr address-size='64' path='Objects/floatobject.c' comp-dir-path='/src' language='LANG_C11'>
+ <abi-instr address-size='64' path='Objects/floatobject.c' comp-dir-path='/home/runner/work/cpython/cpython' language='LANG_C11'>
<class-decl name='PyStructSequence_Field' size-in-bits='128' is-struct='yes' visibility='default' filepath='./Include/structseq.h' line='10' column='1' id='type-id-341'>
<data-member access='public' layout-offset-in-bits='0'>
<var-decl name='name' type-id='type-id-6' visibility='default' filepath='./Include/structseq.h' line='11' column='1'/>
@@ -7141,7 +7141,7 @@
<return type-id='type-id-171'/>
</function-decl>
</abi-instr>
- <abi-instr address-size='64' path='Objects/frameobject.c' comp-dir-path='/src' language='LANG_C11'>
+ <abi-instr address-size='64' path='Objects/frameobject.c' comp-dir-path='/home/runner/work/cpython/cpython' language='LANG_C11'>
<class-decl name='PyFrameConstructor' size-in-bits='512' is-struct='yes' naming-typedef-id='type-id-347' visibility='default' filepath='./Include/cpython/funcobject.h' line='21' column='1' id='type-id-348'>
<data-member access='public' layout-offset-in-bits='0'>
<var-decl name='fc_globals' type-id='type-id-4' visibility='default' filepath='./Include/cpython/funcobject.h' line='22' column='1'/>
@@ -7226,11 +7226,11 @@
<parameter type-id='type-id-4'/>
<return type-id='type-id-5'/>
</function-decl>
- <function-decl name='Py_ReprEnter' mangled-name='Py_ReprEnter' filepath='./Include/object.h' line='599' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='Py_ReprEnter'>
+ <function-decl name='Py_ReprEnter' mangled-name='Py_ReprEnter' filepath='./Include/object.h' line='605' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='Py_ReprEnter'>
<parameter type-id='type-id-4'/>
<return type-id='type-id-5'/>
</function-decl>
- <function-decl name='Py_ReprLeave' mangled-name='Py_ReprLeave' filepath='./Include/object.h' line='600' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='Py_ReprLeave'>
+ <function-decl name='Py_ReprLeave' mangled-name='Py_ReprLeave' filepath='./Include/object.h' line='606' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='Py_ReprLeave'>
<parameter type-id='type-id-4'/>
<return type-id='type-id-3'/>
</function-decl>
@@ -7302,7 +7302,7 @@
</function-decl>
<type-decl name='bool' size-in-bits='8' id='type-id-351'/>
</abi-instr>
- <abi-instr address-size='64' path='Objects/funcobject.c' comp-dir-path='/src' language='LANG_C11'>
+ <abi-instr address-size='64' path='Objects/funcobject.c' comp-dir-path='/home/runner/work/cpython/cpython' language='LANG_C11'>
<var-decl name='PyFunction_Type' type-id='type-id-264' mangled-name='PyFunction_Type' visibility='default' filepath='./Include/cpython/funcobject.h' line='65' column='1' elf-symbol-id='PyFunction_Type'/>
<var-decl name='PyClassMethod_Type' type-id='type-id-264' mangled-name='PyClassMethod_Type' visibility='default' filepath='./Include/cpython/funcobject.h' line='125' column='1' elf-symbol-id='PyClassMethod_Type'/>
<var-decl name='PyStaticMethod_Type' type-id='type-id-264' mangled-name='PyStaticMethod_Type' visibility='default' filepath='./Include/cpython/funcobject.h' line='126' column='1' elf-symbol-id='PyStaticMethod_Type'/>
@@ -7404,7 +7404,7 @@
<return type-id='type-id-4'/>
</function-decl>
</abi-instr>
- <abi-instr address-size='64' path='Objects/genericaliasobject.c' comp-dir-path='/src' language='LANG_C11'>
+ <abi-instr address-size='64' path='Objects/genericaliasobject.c' comp-dir-path='/home/runner/work/cpython/cpython' language='LANG_C11'>
<function-decl name='_PyUnicodeWriter_WriteASCIIString' mangled-name='_PyUnicodeWriter_WriteASCIIString' filepath='./Include/cpython/unicodeobject.h' line='539' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyUnicodeWriter_WriteASCIIString'>
<parameter type-id='type-id-328'/>
<parameter type-id='type-id-6'/>
@@ -7424,12 +7424,12 @@
<parameter type-id='type-id-4'/>
<return type-id='type-id-5'/>
</function-decl>
- <function-decl name='PyObject_HasAttrWithError' mangled-name='PyObject_HasAttrWithError' filepath='./Include/object.h' line='575' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyObject_HasAttrWithError'>
+ <function-decl name='PyObject_HasAttrWithError' mangled-name='PyObject_HasAttrWithError' filepath='./Include/object.h' line='581' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyObject_HasAttrWithError'>
<parameter type-id='type-id-4'/>
<parameter type-id='type-id-4'/>
<return type-id='type-id-5'/>
</function-decl>
- <function-decl name='PyObject_Dir' mangled-name='PyObject_Dir' filepath='./Include/object.h' line='596' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyObject_Dir'>
+ <function-decl name='PyObject_Dir' mangled-name='PyObject_Dir' filepath='./Include/object.h' line='602' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyObject_Dir'>
<parameter type-id='type-id-4'/>
<return type-id='type-id-4'/>
</function-decl>
@@ -7438,7 +7438,7 @@
<return type-id='type-id-3'/>
</function-decl>
</abi-instr>
- <abi-instr address-size='64' path='Objects/genobject.c' comp-dir-path='/src' language='LANG_C11'>
+ <abi-instr address-size='64' path='Objects/genobject.c' comp-dir-path='/home/runner/work/cpython/cpython' language='LANG_C11'>
<class-decl name='PyGenObject' size-in-bits='640' is-struct='yes' naming-typedef-id='type-id-353' visibility='default' filepath='./Include/cpython/genobject.h' line='31' column='1' id='type-id-354'>
<data-member access='public' layout-offset-in-bits='0'>
<var-decl name='ob_base' type-id='type-id-355' visibility='default' filepath='./Include/cpython/genobject.h' line='33' column='1'/>
@@ -7631,7 +7631,7 @@
<return type-id='type-id-4'/>
</function-decl>
</abi-instr>
- <abi-instr address-size='64' path='Objects/iterobject.c' comp-dir-path='/src' language='LANG_C11'>
+ <abi-instr address-size='64' path='Objects/iterobject.c' comp-dir-path='/home/runner/work/cpython/cpython' language='LANG_C11'>
<function-decl name='_PyObject_HasLen' filepath='./Include/internal/pycore_abstract.h' line='22' column='1' visibility='default' binding='global' size-in-bits='64'>
<parameter type-id='type-id-4'/>
<return type-id='type-id-5'/>
@@ -7644,7 +7644,7 @@
<return type-id='type-id-4'/>
</function-decl>
</abi-instr>
- <abi-instr address-size='64' path='Objects/listobject.c' comp-dir-path='/src' language='LANG_C11'>
+ <abi-instr address-size='64' path='Objects/listobject.c' comp-dir-path='/home/runner/work/cpython/cpython' language='LANG_C11'>
<function-decl name='_PyEval_SliceIndexNotNone' mangled-name='_PyEval_SliceIndexNotNone' filepath='./Include/cpython/ceval.h' line='25' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyEval_SliceIndexNotNone'>
<parameter type-id='type-id-4'/>
<parameter type-id='type-id-8'/>
@@ -7673,7 +7673,7 @@
<var-decl name='PyList_Type' type-id='type-id-264' mangled-name='PyList_Type' visibility='default' filepath='./Include/listobject.h' line='20' column='1' elf-symbol-id='PyList_Type'/>
<var-decl name='PyListIter_Type' type-id='type-id-264' mangled-name='PyListIter_Type' visibility='default' filepath='./Include/listobject.h' line='21' column='1' elf-symbol-id='PyListIter_Type'/>
<var-decl name='PyListRevIter_Type' type-id='type-id-264' mangled-name='PyListRevIter_Type' visibility='default' filepath='./Include/listobject.h' line='22' column='1' elf-symbol-id='PyListRevIter_Type'/>
- <function-decl name='PyObject_HashNotImplemented' mangled-name='PyObject_HashNotImplemented' filepath='./Include/object.h' line='585' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyObject_HashNotImplemented'>
+ <function-decl name='PyObject_HashNotImplemented' mangled-name='PyObject_HashNotImplemented' filepath='./Include/object.h' line='591' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyObject_HashNotImplemented'>
<parameter type-id='type-id-4'/>
<return type-id='type-id-299'/>
</function-decl>
@@ -7728,7 +7728,7 @@
<return type-id='type-id-4'/>
</function-decl>
</abi-instr>
- <abi-instr address-size='64' path='Objects/longobject.c' comp-dir-path='/src' language='LANG_C11'>
+ <abi-instr address-size='64' path='Objects/longobject.c' comp-dir-path='/home/runner/work/cpython/cpython' language='LANG_C11'>
<array-type-def dimensions='1' type-id='type-id-90' size-in-bits='2048' id='type-id-367'>
<subrange length='256' type-id='type-id-2' id='type-id-68'/>
</array-type-def>
@@ -7753,8 +7753,8 @@
<parameter type-id='type-id-7'/>
<return type-id='type-id-5'/>
</function-decl>
- <var-decl name='PyLong_Type' type-id='type-id-264' mangled-name='PyLong_Type' visibility='default' filepath='./Include/object.h' line='336' column='1' elf-symbol-id='PyLong_Type'/>
- <function-decl name='PyObject_Bytes' mangled-name='PyObject_Bytes' filepath='./Include/object.h' line='559' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyObject_Bytes'>
+ <var-decl name='PyLong_Type' type-id='type-id-264' mangled-name='PyLong_Type' visibility='default' filepath='./Include/object.h' line='342' column='1' elf-symbol-id='PyLong_Type'/>
+ <function-decl name='PyObject_Bytes' mangled-name='PyObject_Bytes' filepath='./Include/object.h' line='565' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyObject_Bytes'>
<parameter type-id='type-id-4'/>
<return type-id='type-id-4'/>
</function-decl>
@@ -7924,7 +7924,7 @@
<return type-id='type-id-7'/>
</function-decl>
</abi-instr>
- <abi-instr address-size='64' path='Objects/memoryobject.c' comp-dir-path='/src' language='LANG_C11'>
+ <abi-instr address-size='64' path='Objects/memoryobject.c' comp-dir-path='/home/runner/work/cpython/cpython' language='LANG_C11'>
<var-decl name='_PyManagedBuffer_Type' type-id='type-id-264' visibility='default' filepath='./Include/internal/pycore_memoryobject.h' line='11' column='1'/>
<var-decl name='PyMemoryView_Type' type-id='type-id-264' mangled-name='PyMemoryView_Type' visibility='default' filepath='./Include/memoryobject.h' line='9' column='1' elf-symbol-id='PyMemoryView_Type'/>
<function-decl name='PyUnicode_AsASCIIString' mangled-name='PyUnicode_AsASCIIString' filepath='./Include/unicodeobject.h' line='631' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_AsASCIIString'>
@@ -7952,7 +7952,7 @@
<return type-id='type-id-4'/>
</function-decl>
</abi-instr>
- <abi-instr address-size='64' path='Objects/methodobject.c' comp-dir-path='/src' language='LANG_C11'>
+ <abi-instr address-size='64' path='Objects/methodobject.c' comp-dir-path='/home/runner/work/cpython/cpython' language='LANG_C11'>
<var-decl name='PyCMethod_Type' type-id='type-id-264' mangled-name='PyCMethod_Type' visibility='default' filepath='./Include/cpython/methodobject.h' line='32' column='1' elf-symbol-id='PyCMethod_Type'/>
<var-decl name='PyCFunction_Type' type-id='type-id-264' mangled-name='PyCFunction_Type' visibility='default' filepath='./Include/methodobject.h' line='14' column='1' elf-symbol-id='PyCFunction_Type'/>
<function-decl name='PyCFunction_New' mangled-name='PyCFunction_New' filepath='Objects/methodobject.c' line='33' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyCFunction_New'>
@@ -7979,7 +7979,7 @@
<return type-id='type-id-5'/>
</function-decl>
</abi-instr>
- <abi-instr address-size='64' path='Objects/moduleobject.c' comp-dir-path='/src' language='LANG_C11'>
+ <abi-instr address-size='64' path='Objects/moduleobject.c' comp-dir-path='/home/runner/work/cpython/cpython' language='LANG_C11'>
<class-decl name='PyModuleDef_Base' size-in-bits='320' is-struct='yes' visibility='default' filepath='./Include/moduleobject.h' line='39' column='1' id='type-id-378'>
<data-member access='public' layout-offset-in-bits='0'>
<var-decl name='ob_base' type-id='type-id-355' visibility='default' filepath='./Include/moduleobject.h' line='40' column='1'/>
@@ -8078,7 +8078,7 @@
</function-decl>
<var-decl name='PyModule_Type' type-id='type-id-264' mangled-name='PyModule_Type' visibility='default' filepath='./Include/moduleobject.h' line='10' column='1' elf-symbol-id='PyModule_Type'/>
<var-decl name='PyModuleDef_Type' type-id='type-id-264' mangled-name='PyModuleDef_Type' visibility='default' filepath='./Include/moduleobject.h' line='36' column='1' elf-symbol-id='PyModuleDef_Type'/>
- <function-decl name='PyObject_SetAttrString' mangled-name='PyObject_SetAttrString' filepath='./Include/object.h' line='563' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyObject_SetAttrString'>
+ <function-decl name='PyObject_SetAttrString' mangled-name='PyObject_SetAttrString' filepath='./Include/object.h' line='569' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyObject_SetAttrString'>
<parameter type-id='type-id-4'/>
<parameter type-id='type-id-6'/>
<parameter type-id='type-id-4'/>
@@ -8171,7 +8171,7 @@
<return type-id='type-id-4'/>
</function-type>
</abi-instr>
- <abi-instr address-size='64' path='Objects/namespaceobject.c' comp-dir-path='/src' language='LANG_C11'>
+ <abi-instr address-size='64' path='Objects/namespaceobject.c' comp-dir-path='/home/runner/work/cpython/cpython' language='LANG_C11'>
<function-decl name='_PyArg_NoPositional' mangled-name='_PyArg_NoPositional' filepath='./Include/internal/pycore_modsupport.h' line='20' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyArg_NoPositional'>
<parameter type-id='type-id-6'/>
<parameter type-id='type-id-4'/>
@@ -8188,7 +8188,7 @@
<return type-id='type-id-4'/>
</function-decl>
</abi-instr>
- <abi-instr address-size='64' path='Objects/object.c' comp-dir-path='/src' language='LANG_C11'>
+ <abi-instr address-size='64' path='Objects/object.c' comp-dir-path='/home/runner/work/cpython/cpython' language='LANG_C11'>
<array-type-def dimensions='1' type-id='type-id-5' size-in-bits='192' id='type-id-96'>
<subrange length='6' type-id='type-id-2' id='type-id-390'/>
</array-type-def>
@@ -8313,21 +8313,21 @@
<parameter type-id='type-id-5'/>
<return type-id='type-id-5'/>
</function-decl>
- <function-decl name='_PyObject_StoreInstanceAttribute' filepath='./Include/internal/pycore_object.h' line='705' column='1' visibility='default' binding='global' size-in-bits='64'>
+ <function-decl name='_PyObject_StoreInstanceAttribute' filepath='./Include/internal/pycore_object.h' line='704' column='1' visibility='default' binding='global' size-in-bits='64'>
<parameter type-id='type-id-4'/>
<parameter type-id='type-id-4'/>
<parameter type-id='type-id-4'/>
<return type-id='type-id-5'/>
</function-decl>
- <function-decl name='_PyObject_TryGetInstanceAttribute' filepath='./Include/internal/pycore_object.h' line='707' column='1' visibility='default' binding='global' size-in-bits='64'>
+ <function-decl name='_PyObject_TryGetInstanceAttribute' filepath='./Include/internal/pycore_object.h' line='706' column='1' visibility='default' binding='global' size-in-bits='64'>
<parameter type-id='type-id-4'/>
<parameter type-id='type-id-4'/>
<parameter type-id='type-id-236'/>
<return type-id='type-id-351'/>
</function-decl>
- <var-decl name='_PyNone_Type' type-id='type-id-264' mangled-name='_PyNone_Type' visibility='default' filepath='./Include/internal/pycore_object.h' line='782' column='1' elf-symbol-id='_PyNone_Type'/>
- <var-decl name='_PyNotImplemented_Type' type-id='type-id-264' mangled-name='_PyNotImplemented_Type' visibility='default' filepath='./Include/internal/pycore_object.h' line='783' column='1' elf-symbol-id='_PyNotImplemented_Type'/>
- <var-decl name='_Py_SwappedOp' type-id='type-id-391' mangled-name='_Py_SwappedOp' visibility='default' filepath='./Include/internal/pycore_object.h' line='787' column='1' elf-symbol-id='_Py_SwappedOp'/>
+ <var-decl name='_PyNone_Type' type-id='type-id-264' mangled-name='_PyNone_Type' visibility='default' filepath='./Include/internal/pycore_object.h' line='781' column='1' elf-symbol-id='_PyNone_Type'/>
+ <var-decl name='_PyNotImplemented_Type' type-id='type-id-264' mangled-name='_PyNotImplemented_Type' visibility='default' filepath='./Include/internal/pycore_object.h' line='782' column='1' elf-symbol-id='_PyNotImplemented_Type'/>
+ <var-decl name='_Py_SwappedOp' type-id='type-id-391' mangled-name='_Py_SwappedOp' visibility='default' filepath='./Include/internal/pycore_object.h' line='786' column='1' elf-symbol-id='_Py_SwappedOp'/>
<function-decl name='_PyTuple_DebugMallocStats' filepath='./Include/internal/pycore_tuple.h' line='12' column='1' visibility='default' binding='global' size-in-bits='64'>
<parameter type-id='type-id-55'/>
<return type-id='type-id-3'/>
@@ -8368,8 +8368,8 @@
<parameter type-id='type-id-6'/>
<return type-id='type-id-4'/>
</function-decl>
- <var-decl name='_Py_NoneStruct' type-id='type-id-355' mangled-name='_Py_NoneStruct' visibility='default' filepath='./Include/object.h' line='1095' column='1' elf-symbol-id='_Py_NoneStruct'/>
- <var-decl name='_Py_NotImplementedStruct' type-id='type-id-355' mangled-name='_Py_NotImplementedStruct' visibility='default' filepath='./Include/object.h' line='1114' column='1' elf-symbol-id='_Py_NotImplementedStruct'/>
+ <var-decl name='_Py_NoneStruct' type-id='type-id-355' mangled-name='_Py_NoneStruct' visibility='default' filepath='./Include/object.h' line='1101' column='1' elf-symbol-id='_Py_NoneStruct'/>
+ <var-decl name='_Py_NotImplementedStruct' type-id='type-id-355' mangled-name='_Py_NotImplementedStruct' visibility='default' filepath='./Include/object.h' line='1120' column='1' elf-symbol-id='_Py_NotImplementedStruct'/>
<function-decl name='PyThreadState_GetDict' mangled-name='PyThreadState_GetDict' filepath='./Include/pystate.h' line='66' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyThreadState_GetDict'>
<return type-id='type-id-4'/>
</function-decl>
@@ -8502,59 +8502,59 @@
<parameter type-id='type-id-4' name='v' filepath='Objects/object.c' line='1846' column='1'/>
<return type-id='type-id-5'/>
</function-decl>
- <function-decl name='_Py_ResurrectReference' mangled-name='_Py_ResurrectReference' filepath='Objects/object.c' line='2470' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_ResurrectReference'>
- <parameter type-id='type-id-4' name='op' filepath='Objects/object.c' line='2470' column='1'/>
+ <function-decl name='_Py_ResurrectReference' mangled-name='_Py_ResurrectReference' filepath='Objects/object.c' line='2471' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_ResurrectReference'>
+ <parameter type-id='type-id-4' name='op' filepath='Objects/object.c' line='2471' column='1'/>
<return type-id='type-id-3'/>
</function-decl>
- <function-decl name='PyObject_GET_WEAKREFS_LISTPTR' mangled-name='PyObject_GET_WEAKREFS_LISTPTR' filepath='Objects/object.c' line='2905' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyObject_GET_WEAKREFS_LISTPTR'>
- <parameter type-id='type-id-4' name='op' filepath='Objects/object.c' line='2905' column='1'/>
+ <function-decl name='PyObject_GET_WEAKREFS_LISTPTR' mangled-name='PyObject_GET_WEAKREFS_LISTPTR' filepath='Objects/object.c' line='2906' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyObject_GET_WEAKREFS_LISTPTR'>
+ <parameter type-id='type-id-4' name='op' filepath='Objects/object.c' line='2906' column='1'/>
<return type-id='type-id-236'/>
</function-decl>
- <function-decl name='Py_NewRef' mangled-name='Py_NewRef' filepath='Objects/object.c' line='2916' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='Py_NewRef'>
- <parameter type-id='type-id-4' name='obj' filepath='Objects/object.c' line='2916' column='1'/>
+ <function-decl name='Py_NewRef' mangled-name='Py_NewRef' filepath='Objects/object.c' line='2917' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='Py_NewRef'>
+ <parameter type-id='type-id-4' name='obj' filepath='Objects/object.c' line='2917' column='1'/>
<return type-id='type-id-4'/>
</function-decl>
- <function-decl name='Py_XNewRef' mangled-name='Py_XNewRef' filepath='Objects/object.c' line='2922' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='Py_XNewRef'>
- <parameter type-id='type-id-4' name='obj' filepath='Objects/object.c' line='2922' column='1'/>
+ <function-decl name='Py_XNewRef' mangled-name='Py_XNewRef' filepath='Objects/object.c' line='2923' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='Py_XNewRef'>
+ <parameter type-id='type-id-4' name='obj' filepath='Objects/object.c' line='2923' column='1'/>
<return type-id='type-id-4'/>
</function-decl>
- <function-decl name='Py_Is' mangled-name='Py_Is' filepath='Objects/object.c' line='2934' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='Py_Is'>
- <parameter type-id='type-id-4' name='x' filepath='Objects/object.c' line='2934' column='1'/>
- <parameter type-id='type-id-4' name='y' filepath='Objects/object.c' line='2934' column='1'/>
+ <function-decl name='Py_Is' mangled-name='Py_Is' filepath='Objects/object.c' line='2935' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='Py_Is'>
+ <parameter type-id='type-id-4' name='x' filepath='Objects/object.c' line='2935' column='1'/>
+ <parameter type-id='type-id-4' name='y' filepath='Objects/object.c' line='2935' column='1'/>
<return type-id='type-id-5'/>
</function-decl>
- <function-decl name='Py_IsNone' mangled-name='Py_IsNone' filepath='Objects/object.c' line='2939' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='Py_IsNone'>
- <parameter type-id='type-id-4' name='x' filepath='Objects/object.c' line='2939' column='1'/>
+ <function-decl name='Py_IsNone' mangled-name='Py_IsNone' filepath='Objects/object.c' line='2940' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='Py_IsNone'>
+ <parameter type-id='type-id-4' name='x' filepath='Objects/object.c' line='2940' column='1'/>
<return type-id='type-id-5'/>
</function-decl>
- <function-decl name='Py_IsTrue' mangled-name='Py_IsTrue' filepath='Objects/object.c' line='2944' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='Py_IsTrue'>
- <parameter type-id='type-id-4' name='x' filepath='Objects/object.c' line='2944' column='1'/>
+ <function-decl name='Py_IsTrue' mangled-name='Py_IsTrue' filepath='Objects/object.c' line='2945' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='Py_IsTrue'>
+ <parameter type-id='type-id-4' name='x' filepath='Objects/object.c' line='2945' column='1'/>
<return type-id='type-id-5'/>
</function-decl>
- <function-decl name='Py_IsFalse' mangled-name='Py_IsFalse' filepath='Objects/object.c' line='2949' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='Py_IsFalse'>
- <parameter type-id='type-id-4' name='x' filepath='Objects/object.c' line='2949' column='1'/>
+ <function-decl name='Py_IsFalse' mangled-name='Py_IsFalse' filepath='Objects/object.c' line='2950' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='Py_IsFalse'>
+ <parameter type-id='type-id-4' name='x' filepath='Objects/object.c' line='2950' column='1'/>
<return type-id='type-id-5'/>
</function-decl>
- <function-decl name='_Py_SetRefcnt' mangled-name='_Py_SetRefcnt' filepath='Objects/object.c' line='2957' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_SetRefcnt'>
- <parameter type-id='type-id-4' name='ob' filepath='Objects/object.c' line='2957' column='1'/>
- <parameter type-id='type-id-7' name='refcnt' filepath='Objects/object.c' line='2957' column='1'/>
+ <function-decl name='_Py_SetRefcnt' mangled-name='_Py_SetRefcnt' filepath='Objects/object.c' line='2958' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_SetRefcnt'>
+ <parameter type-id='type-id-4' name='ob' filepath='Objects/object.c' line='2958' column='1'/>
+ <parameter type-id='type-id-7' name='refcnt' filepath='Objects/object.c' line='2958' column='1'/>
<return type-id='type-id-3'/>
</function-decl>
- <function-decl name='PyRefTracer_SetTracer' mangled-name='PyRefTracer_SetTracer' filepath='Objects/object.c' line='2962' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyRefTracer_SetTracer'>
- <parameter type-id='type-id-402' name='tracer' filepath='Objects/object.c' line='2962' column='1'/>
- <parameter type-id='type-id-29' name='data' filepath='Objects/object.c' line='2962' column='1'/>
+ <function-decl name='PyRefTracer_SetTracer' mangled-name='PyRefTracer_SetTracer' filepath='Objects/object.c' line='2963' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyRefTracer_SetTracer'>
+ <parameter type-id='type-id-402' name='tracer' filepath='Objects/object.c' line='2963' column='1'/>
+ <parameter type-id='type-id-29' name='data' filepath='Objects/object.c' line='2963' column='1'/>
<return type-id='type-id-5'/>
</function-decl>
- <function-decl name='PyRefTracer_GetTracer' mangled-name='PyRefTracer_GetTracer' filepath='Objects/object.c' line='2969' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyRefTracer_GetTracer'>
- <parameter type-id='type-id-260' name='data' filepath='Objects/object.c' line='2969' column='1'/>
+ <function-decl name='PyRefTracer_GetTracer' mangled-name='PyRefTracer_GetTracer' filepath='Objects/object.c' line='2970' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyRefTracer_GetTracer'>
+ <parameter type-id='type-id-260' name='data' filepath='Objects/object.c' line='2970' column='1'/>
<return type-id='type-id-402'/>
</function-decl>
- <function-decl name='Py_GetConstant' mangled-name='Py_GetConstant' filepath='Objects/object.c' line='3009' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='Py_GetConstant'>
- <parameter type-id='type-id-100' name='constant_id' filepath='Objects/object.c' line='3009' column='1'/>
+ <function-decl name='Py_GetConstant' mangled-name='Py_GetConstant' filepath='Objects/object.c' line='3010' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='Py_GetConstant'>
+ <parameter type-id='type-id-100' name='constant_id' filepath='Objects/object.c' line='3010' column='1'/>
<return type-id='type-id-4'/>
</function-decl>
- <function-decl name='Py_GetConstantBorrowed' mangled-name='Py_GetConstantBorrowed' filepath='Objects/object.c' line='3022' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='Py_GetConstantBorrowed'>
- <parameter type-id='type-id-100' name='constant_id' filepath='Objects/object.c' line='3022' column='1'/>
+ <function-decl name='Py_GetConstantBorrowed' mangled-name='Py_GetConstantBorrowed' filepath='Objects/object.c' line='3023' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='Py_GetConstantBorrowed'>
+ <parameter type-id='type-id-100' name='constant_id' filepath='Objects/object.c' line='3023' column='1'/>
<return type-id='type-id-4'/>
</function-decl>
<class-decl name='_Py_object_freelists' size-in-bits='28288' is-struct='yes' visibility='default' filepath='./Include/internal/pycore_freelist.h' line='127' column='1' id='type-id-397'>
@@ -8601,7 +8601,7 @@
<subrange length='80' type-id='type-id-2' id='type-id-415'/>
</array-type-def>
</abi-instr>
- <abi-instr address-size='64' path='Objects/obmalloc.c' comp-dir-path='/src' language='LANG_C11'>
+ <abi-instr address-size='64' path='Objects/obmalloc.c' comp-dir-path='/home/runner/work/cpython/cpython' language='LANG_C11'>
<array-type-def dimensions='1' type-id='type-id-416' size-in-bits='14400' id='type-id-417'>
<subrange length='75' type-id='type-id-2' id='type-id-418'/>
</array-type-def>
@@ -9175,10 +9175,9 @@
<typedef-decl name='__rusage_who_t' type-id='type-id-480' filepath='/usr/include/x86_64-linux-gnu/sys/resource.h' line='39' column='1' id='type-id-499'/>
<pointer-type-def type-id='type-id-500' size-in-bits='64' id='type-id-501'/>
<pointer-type-def type-id='type-id-502' size-in-bits='64' id='type-id-503'/>
- <pointer-type-def type-id='type-id-504' size-in-bits='64' id='type-id-505'/>
<pointer-type-def type-id='type-id-477' size-in-bits='64' id='type-id-170'/>
- <qualified-type-def type-id='type-id-434' const='yes' id='type-id-506'/>
- <qualified-type-def type-id='type-id-447' const='yes' id='type-id-507'/>
+ <qualified-type-def type-id='type-id-434' const='yes' id='type-id-504'/>
+ <qualified-type-def type-id='type-id-447' const='yes' id='type-id-505'/>
<pointer-type-def type-id='type-id-450' size-in-bits='64' id='type-id-472'/>
<pointer-type-def type-id='type-id-439' size-in-bits='64' id='type-id-445'/>
<pointer-type-def type-id='type-id-434' size-in-bits='64' id='type-id-457'/>
@@ -9188,17 +9187,9 @@
<pointer-type-def type-id='type-id-448' size-in-bits='64' id='type-id-466'/>
<pointer-type-def type-id='type-id-464' size-in-bits='64' id='type-id-468'/>
<pointer-type-def type-id='type-id-452' size-in-bits='64' id='type-id-456'/>
- <pointer-type-def type-id='type-id-508' size-in-bits='64' id='type-id-509'/>
+ <pointer-type-def type-id='type-id-506' size-in-bits='64' id='type-id-507'/>
<pointer-type-def type-id='type-id-484' size-in-bits='64' id='type-id-187'/>
<pointer-type-def type-id='type-id-106' size-in-bits='64' id='type-id-176'/>
- <function-decl name='PyMutex_Lock' mangled-name='PyMutex_Lock' filepath='./Include/cpython/lock.h' line='34' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyMutex_Lock'>
- <parameter type-id='type-id-503'/>
- <return type-id='type-id-3'/>
- </function-decl>
- <function-decl name='PyMutex_Unlock' mangled-name='PyMutex_Unlock' filepath='./Include/cpython/lock.h' line='37' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyMutex_Unlock'>
- <parameter type-id='type-id-503'/>
- <return type-id='type-id-3'/>
- </function-decl>
<function-decl name='Py_GETENV' mangled-name='Py_GETENV' filepath='./Include/cpython/pydebug.h' line='32' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='Py_GETENV'>
<parameter type-id='type-id-6'/>
<return type-id='type-id-17'/>
@@ -9214,9 +9205,9 @@
<return type-id='type-id-27'/>
</function-decl>
<var-decl name='_mi_stats_main' type-id='type-id-464' visibility='default' filepath='./Include/internal/mimalloc/mimalloc/internal.h' line='62' column='1'/>
- <var-decl name='_mi_page_empty' type-id='type-id-507' visibility='default' filepath='./Include/internal/mimalloc/mimalloc/internal.h' line='63' column='1'/>
+ <var-decl name='_mi_page_empty' type-id='type-id-505' visibility='default' filepath='./Include/internal/mimalloc/mimalloc/internal.h' line='63' column='1'/>
<var-decl name='_mi_abandoned_default' type-id='type-id-450' visibility='default' filepath='./Include/internal/mimalloc/mimalloc/internal.h' line='117' column='1'/>
- <var-decl name='_mi_heap_empty' type-id='type-id-506' visibility='default' filepath='./Include/internal/mimalloc/mimalloc/internal.h' line='368' column='1'/>
+ <var-decl name='_mi_heap_empty' type-id='type-id-504' visibility='default' filepath='./Include/internal/mimalloc/mimalloc/internal.h' line='368' column='1'/>
<var-decl name='_mi_heap_default' type-id='type-id-457' visibility='default' filepath='./Include/internal/mimalloc/mimalloc/prim.h' line='129' column='1'/>
<var-decl name='_mi_process_is_initialized' type-id='type-id-351' visibility='default' filepath='./Include/internal/mimalloc/mimalloc/prim.h' line='130' column='1'/>
<function-decl name='_PyInterpreterState_HasFeature' filepath='./Include/internal/pycore_interp.h' line='394' column='1' visibility='default' binding='global' size-in-bits='64'>
@@ -9225,7 +9216,7 @@
<return type-id='type-id-5'/>
</function-decl>
<function-decl name='_PyMutex_LockTimed' filepath='./Include/internal/pycore_lock.h' line='55' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-503'/>
+ <parameter type-id='type-id-508'/>
<parameter type-id='type-id-211'/>
<parameter type-id='type-id-475'/>
<return type-id='type-id-479'/>
@@ -9239,17 +9230,17 @@
<return type-id='type-id-3'/>
</function-decl>
<function-decl name='_Py_qsbr_poll' filepath='./Include/internal/pycore_qsbr.h' line='122' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-510'/>
+ <parameter type-id='type-id-509'/>
<parameter type-id='type-id-107'/>
<return type-id='type-id-351'/>
</function-decl>
<function-decl name='pthread_key_create' filepath='/usr/include/pthread.h' line='1297' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-509'/>
- <parameter type-id='type-id-511'/>
+ <parameter type-id='type-id-507'/>
+ <parameter type-id='type-id-510'/>
<return type-id='type-id-5'/>
</function-decl>
<function-decl name='pthread_setspecific' filepath='/usr/include/pthread.h' line='1308' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-508'/>
+ <parameter type-id='type-id-506'/>
<parameter type-id='type-id-29'/>
<return type-id='type-id-5'/>
</function-decl>
@@ -9374,11 +9365,11 @@
<return type-id='type-id-3'/>
</function-decl>
<function-decl name='PyObject_GetArenaAllocator' mangled-name='PyObject_GetArenaAllocator' filepath='Objects/obmalloc.c' line='886' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyObject_GetArenaAllocator'>
- <parameter type-id='type-id-505' name='allocator' filepath='Objects/obmalloc.c' line='886' column='1'/>
+ <parameter type-id='type-id-503' name='allocator' filepath='Objects/obmalloc.c' line='886' column='1'/>
<return type-id='type-id-3'/>
</function-decl>
<function-decl name='PyObject_SetArenaAllocator' mangled-name='PyObject_SetArenaAllocator' filepath='Objects/obmalloc.c' line='894' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyObject_SetArenaAllocator'>
- <parameter type-id='type-id-505' name='allocator' filepath='Objects/obmalloc.c' line='894' column='1'/>
+ <parameter type-id='type-id-503' name='allocator' filepath='Objects/obmalloc.c' line='894' column='1'/>
<return type-id='type-id-3'/>
</function-decl>
<function-decl name='PyMem_RawMalloc' mangled-name='PyMem_RawMalloc' filepath='Objects/obmalloc.c' line='938' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyMem_RawMalloc'>
@@ -9398,12 +9389,12 @@
<parameter type-id='type-id-55' name='out' filepath='Objects/obmalloc.c' line='3439' column='1'/>
<return type-id='type-id-5'/>
</function-decl>
- <function-type size-in-bits='64' id='type-id-512'>
+ <function-type size-in-bits='64' id='type-id-511'>
<parameter type-id='type-id-29'/>
<return type-id='type-id-3'/>
</function-type>
</abi-instr>
- <abi-instr address-size='64' path='Objects/odictobject.c' comp-dir-path='/src' language='LANG_C11'>
+ <abi-instr address-size='64' path='Objects/odictobject.c' comp-dir-path='/home/runner/work/cpython/cpython' language='LANG_C11'>
<var-decl name='PyODict_Type' type-id='type-id-264' mangled-name='PyODict_Type' visibility='default' filepath='./Include/cpython/odictobject.h' line='15' column='1' elf-symbol-id='PyODict_Type'/>
<var-decl name='PyODictIter_Type' type-id='type-id-264' mangled-name='PyODictIter_Type' visibility='default' filepath='./Include/cpython/odictobject.h' line='16' column='1' elf-symbol-id='PyODictIter_Type'/>
<var-decl name='PyODictKeys_Type' type-id='type-id-264' mangled-name='PyODictKeys_Type' visibility='default' filepath='./Include/cpython/odictobject.h' line='17' column='1' elf-symbol-id='PyODictKeys_Type'/>
@@ -9438,23 +9429,23 @@
<parameter type-id='type-id-236'/>
<return type-id='type-id-5'/>
</function-decl>
- <function-decl name='PyODict_New' mangled-name='PyODict_New' filepath='Objects/odictobject.c' line='1559' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyODict_New'>
+ <function-decl name='PyODict_New' mangled-name='PyODict_New' filepath='Objects/odictobject.c' line='1576' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyODict_New'>
<return type-id='type-id-4'/>
</function-decl>
- <function-decl name='PyODict_SetItem' mangled-name='PyODict_SetItem' filepath='Objects/odictobject.c' line='1582' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyODict_SetItem'>
- <parameter type-id='type-id-4' name='od' filepath='Objects/odictobject.c' line='1582' column='1'/>
- <parameter type-id='type-id-4' name='key' filepath='Objects/odictobject.c' line='1582' column='1'/>
- <parameter type-id='type-id-4' name='value' filepath='Objects/odictobject.c' line='1582' column='1'/>
+ <function-decl name='PyODict_SetItem' mangled-name='PyODict_SetItem' filepath='Objects/odictobject.c' line='1599' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyODict_SetItem'>
+ <parameter type-id='type-id-4' name='od' filepath='Objects/odictobject.c' line='1599' column='1'/>
+ <parameter type-id='type-id-4' name='key' filepath='Objects/odictobject.c' line='1599' column='1'/>
+ <parameter type-id='type-id-4' name='value' filepath='Objects/odictobject.c' line='1599' column='1'/>
<return type-id='type-id-5'/>
</function-decl>
- <function-decl name='PyODict_DelItem' mangled-name='PyODict_DelItem' filepath='Objects/odictobject.c' line='1591' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyODict_DelItem'>
- <parameter type-id='type-id-4' name='od' filepath='Objects/odictobject.c' line='1591' column='1'/>
- <parameter type-id='type-id-4' name='key' filepath='Objects/odictobject.c' line='1591' column='1'/>
+ <function-decl name='PyODict_DelItem' mangled-name='PyODict_DelItem' filepath='Objects/odictobject.c' line='1608' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyODict_DelItem'>
+ <parameter type-id='type-id-4' name='od' filepath='Objects/odictobject.c' line='1608' column='1'/>
+ <parameter type-id='type-id-4' name='key' filepath='Objects/odictobject.c' line='1608' column='1'/>
<return type-id='type-id-5'/>
</function-decl>
- <pointer-type-def type-id='type-id-513' size-in-bits='64' id='type-id-414'/>
- <typedef-decl name='PyDictKeysObject' type-id='type-id-514' filepath='./Include/cpython/dictobject.h' line='5' column='1' id='type-id-513'/>
- <class-decl name='_dictkeysobject' size-in-bits='256' is-struct='yes' visibility='default' filepath='./Include/internal/pycore_dict.h' line='140' column='1' id='type-id-514'>
+ <pointer-type-def type-id='type-id-512' size-in-bits='64' id='type-id-414'/>
+ <typedef-decl name='PyDictKeysObject' type-id='type-id-513' filepath='./Include/cpython/dictobject.h' line='5' column='1' id='type-id-512'/>
+ <class-decl name='_dictkeysobject' size-in-bits='256' is-struct='yes' visibility='default' filepath='./Include/internal/pycore_dict.h' line='140' column='1' id='type-id-513'>
<data-member access='public' layout-offset-in-bits='0'>
<var-decl name='dk_refcnt' type-id='type-id-7' visibility='default' filepath='./Include/internal/pycore_dict.h' line='141' column='1'/>
</data-member>
@@ -9481,7 +9472,7 @@
</data-member>
</class-decl>
</abi-instr>
- <abi-instr address-size='64' path='Objects/picklebufobject.c' comp-dir-path='/src' language='LANG_C11'>
+ <abi-instr address-size='64' path='Objects/picklebufobject.c' comp-dir-path='/home/runner/work/cpython/cpython' language='LANG_C11'>
<var-decl name='PyPickleBuffer_Type' type-id='type-id-264' mangled-name='PyPickleBuffer_Type' visibility='default' filepath='./Include/cpython/picklebufobject.h' line='13' column='1' elf-symbol-id='PyPickleBuffer_Type'/>
<function-decl name='PyPickleBuffer_FromObject' mangled-name='PyPickleBuffer_FromObject' filepath='Objects/picklebufobject.c' line='16' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyPickleBuffer_FromObject'>
<parameter type-id='type-id-4' name='base' filepath='Objects/picklebufobject.c' line='16' column='1'/>
@@ -9496,7 +9487,7 @@
<return type-id='type-id-5'/>
</function-decl>
</abi-instr>
- <abi-instr address-size='64' path='Objects/rangeobject.c' comp-dir-path='/src' language='LANG_C11'>
+ <abi-instr address-size='64' path='Objects/rangeobject.c' comp-dir-path='/home/runner/work/cpython/cpython' language='LANG_C11'>
<function-decl name='_PySequence_IterSearch' filepath='./Include/internal/pycore_abstract.h' line='41' column='1' visibility='default' binding='global' size-in-bits='64'>
<parameter type-id='type-id-4'/>
<parameter type-id='type-id-4'/>
@@ -9507,7 +9498,7 @@
<var-decl name='PyRangeIter_Type' type-id='type-id-264' mangled-name='PyRangeIter_Type' visibility='default' filepath='./Include/rangeobject.h' line='19' column='1' elf-symbol-id='PyRangeIter_Type'/>
<var-decl name='PyLongRangeIter_Type' type-id='type-id-264' mangled-name='PyLongRangeIter_Type' visibility='default' filepath='./Include/rangeobject.h' line='20' column='1' elf-symbol-id='PyLongRangeIter_Type'/>
<function-decl name='_PySlice_GetLongIndices' mangled-name='_PySlice_GetLongIndices' filepath='./Include/sliceobject.h' line='41' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PySlice_GetLongIndices'>
- <parameter type-id='type-id-515'/>
+ <parameter type-id='type-id-514'/>
<parameter type-id='type-id-4'/>
<parameter type-id='type-id-236'/>
<parameter type-id='type-id-236'/>
@@ -9515,11 +9506,11 @@
<return type-id='type-id-5'/>
</function-decl>
</abi-instr>
- <abi-instr address-size='64' path='Objects/setobject.c' comp-dir-path='/src' language='LANG_C11'>
- <array-type-def dimensions='1' type-id='type-id-516' size-in-bits='1024' id='type-id-517'>
- <subrange length='8' type-id='type-id-2' id='type-id-518'/>
+ <abi-instr address-size='64' path='Objects/setobject.c' comp-dir-path='/home/runner/work/cpython/cpython' language='LANG_C11'>
+ <array-type-def dimensions='1' type-id='type-id-515' size-in-bits='1024' id='type-id-516'>
+ <subrange length='8' type-id='type-id-2' id='type-id-517'/>
</array-type-def>
- <class-decl name='setentry' size-in-bits='128' is-struct='yes' naming-typedef-id='type-id-516' visibility='default' filepath='./Include/cpython/setobject.h' line='20' column='1' id='type-id-519'>
+ <class-decl name='setentry' size-in-bits='128' is-struct='yes' naming-typedef-id='type-id-515' visibility='default' filepath='./Include/cpython/setobject.h' line='20' column='1' id='type-id-518'>
<data-member access='public' layout-offset-in-bits='0'>
<var-decl name='key' type-id='type-id-4' visibility='default' filepath='./Include/cpython/setobject.h' line='21' column='1'/>
</data-member>
@@ -9527,8 +9518,8 @@
<var-decl name='hash' type-id='type-id-299' visibility='default' filepath='./Include/cpython/setobject.h' line='22' column='1'/>
</data-member>
</class-decl>
- <typedef-decl name='setentry' type-id='type-id-519' filepath='./Include/cpython/setobject.h' line='23' column='1' id='type-id-516'/>
- <class-decl name='PySetObject' size-in-bits='1600' is-struct='yes' naming-typedef-id='type-id-520' visibility='default' filepath='./Include/cpython/setobject.h' line='36' column='1' id='type-id-521'>
+ <typedef-decl name='setentry' type-id='type-id-518' filepath='./Include/cpython/setobject.h' line='23' column='1' id='type-id-515'/>
+ <class-decl name='PySetObject' size-in-bits='1600' is-struct='yes' naming-typedef-id='type-id-519' visibility='default' filepath='./Include/cpython/setobject.h' line='36' column='1' id='type-id-520'>
<data-member access='public' layout-offset-in-bits='0'>
<var-decl name='ob_base' type-id='type-id-355' visibility='default' filepath='./Include/cpython/setobject.h' line='37' column='1'/>
</data-member>
@@ -9542,7 +9533,7 @@
<var-decl name='mask' type-id='type-id-7' visibility='default' filepath='./Include/cpython/setobject.h' line='46' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='320'>
- <var-decl name='table' type-id='type-id-522' visibility='default' filepath='./Include/cpython/setobject.h' line='53' column='1'/>
+ <var-decl name='table' type-id='type-id-521' visibility='default' filepath='./Include/cpython/setobject.h' line='53' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='384'>
<var-decl name='hash' type-id='type-id-299' visibility='default' filepath='./Include/cpython/setobject.h' line='54' column='1'/>
@@ -9551,15 +9542,15 @@
<var-decl name='finger' type-id='type-id-7' visibility='default' filepath='./Include/cpython/setobject.h' line='55' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='512'>
- <var-decl name='smalltable' type-id='type-id-517' visibility='default' filepath='./Include/cpython/setobject.h' line='57' column='1'/>
+ <var-decl name='smalltable' type-id='type-id-516' visibility='default' filepath='./Include/cpython/setobject.h' line='57' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='1536'>
<var-decl name='weakreflist' type-id='type-id-4' visibility='default' filepath='./Include/cpython/setobject.h' line='58' column='1'/>
</data-member>
</class-decl>
- <typedef-decl name='PySetObject' type-id='type-id-521' filepath='./Include/cpython/setobject.h' line='59' column='1' id='type-id-520'/>
- <pointer-type-def type-id='type-id-520' size-in-bits='64' id='type-id-523'/>
- <pointer-type-def type-id='type-id-516' size-in-bits='64' id='type-id-522'/>
+ <typedef-decl name='PySetObject' type-id='type-id-520' filepath='./Include/cpython/setobject.h' line='59' column='1' id='type-id-519'/>
+ <pointer-type-def type-id='type-id-519' size-in-bits='64' id='type-id-522'/>
+ <pointer-type-def type-id='type-id-515' size-in-bits='64' id='type-id-521'/>
<function-decl name='_PyDict_Contains_KnownHash' filepath='./Include/internal/pycore_dict.h' line='33' column='1' visibility='default' binding='global' size-in-bits='64'>
<parameter type-id='type-id-4'/>
<parameter type-id='type-id-4'/>
@@ -9575,30 +9566,30 @@
<var-decl name='PySet_Type' type-id='type-id-264' mangled-name='PySet_Type' visibility='default' filepath='./Include/setobject.h' line='9' column='1' elf-symbol-id='PySet_Type'/>
<var-decl name='PyFrozenSet_Type' type-id='type-id-264' mangled-name='PyFrozenSet_Type' visibility='default' filepath='./Include/setobject.h' line='10' column='1' elf-symbol-id='PyFrozenSet_Type'/>
<var-decl name='PySetIter_Type' type-id='type-id-264' mangled-name='PySetIter_Type' visibility='default' filepath='./Include/setobject.h' line='11' column='1' elf-symbol-id='PySetIter_Type'/>
- <function-decl name='_PySet_Contains' mangled-name='_PySet_Contains' filepath='Objects/setobject.c' line='2158' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PySet_Contains'>
- <parameter type-id='type-id-523' name='so' filepath='Objects/setobject.c' line='2158' column='1'/>
- <parameter type-id='type-id-4' name='key' filepath='Objects/setobject.c' line='2158' column='1'/>
+ <function-decl name='_PySet_Contains' mangled-name='_PySet_Contains' filepath='Objects/setobject.c' line='2152' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PySet_Contains'>
+ <parameter type-id='type-id-522' name='so' filepath='Objects/setobject.c' line='2152' column='1'/>
+ <parameter type-id='type-id-4' name='key' filepath='Objects/setobject.c' line='2152' column='1'/>
<return type-id='type-id-5'/>
</function-decl>
- <function-decl name='PySet_Size' mangled-name='PySet_Size' filepath='Objects/setobject.c' line='2594' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PySet_Size'>
- <parameter type-id='type-id-4' name='anyset' filepath='Objects/setobject.c' line='2594' column='1'/>
+ <function-decl name='PySet_Size' mangled-name='PySet_Size' filepath='Objects/setobject.c' line='2588' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PySet_Size'>
+ <parameter type-id='type-id-4' name='anyset' filepath='Objects/setobject.c' line='2588' column='1'/>
<return type-id='type-id-7'/>
</function-decl>
- <function-decl name='PySet_Clear' mangled-name='PySet_Clear' filepath='Objects/setobject.c' line='2604' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PySet_Clear'>
- <parameter type-id='type-id-4' name='set' filepath='Objects/setobject.c' line='2604' column='1'/>
+ <function-decl name='PySet_Clear' mangled-name='PySet_Clear' filepath='Objects/setobject.c' line='2598' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PySet_Clear'>
+ <parameter type-id='type-id-4' name='set' filepath='Objects/setobject.c' line='2598' column='1'/>
<return type-id='type-id-5'/>
</function-decl>
- <function-decl name='PySet_Discard' mangled-name='PySet_Discard' filepath='Objects/setobject.c' line='2636' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PySet_Discard'>
- <parameter type-id='type-id-4' name='set' filepath='Objects/setobject.c' line='2636' column='1'/>
- <parameter type-id='type-id-4' name='key' filepath='Objects/setobject.c' line='2636' column='1'/>
+ <function-decl name='PySet_Discard' mangled-name='PySet_Discard' filepath='Objects/setobject.c' line='2630' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PySet_Discard'>
+ <parameter type-id='type-id-4' name='set' filepath='Objects/setobject.c' line='2630' column='1'/>
+ <parameter type-id='type-id-4' name='key' filepath='Objects/setobject.c' line='2630' column='1'/>
<return type-id='type-id-5'/>
</function-decl>
- <function-decl name='PySet_Pop' mangled-name='PySet_Pop' filepath='Objects/setobject.c' line='2700' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PySet_Pop'>
- <parameter type-id='type-id-4' name='set' filepath='Objects/setobject.c' line='2700' column='1'/>
+ <function-decl name='PySet_Pop' mangled-name='PySet_Pop' filepath='Objects/setobject.c' line='2694' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PySet_Pop'>
+ <parameter type-id='type-id-4' name='set' filepath='Objects/setobject.c' line='2694' column='1'/>
<return type-id='type-id-4'/>
</function-decl>
</abi-instr>
- <abi-instr address-size='64' path='Objects/sliceobject.c' comp-dir-path='/src' language='LANG_C11'>
+ <abi-instr address-size='64' path='Objects/sliceobject.c' comp-dir-path='/home/runner/work/cpython/cpython' language='LANG_C11'>
<var-decl name='_Py_EllipsisObject' type-id='type-id-355' mangled-name='_Py_EllipsisObject' visibility='default' filepath='./Include/sliceobject.h' line='9' column='1' elf-symbol-id='_Py_EllipsisObject'/>
<var-decl name='PySlice_Type' type-id='type-id-264' mangled-name='PySlice_Type' visibility='default' filepath='./Include/sliceobject.h' line='32' column='1' elf-symbol-id='PySlice_Type'/>
<var-decl name='PyEllipsis_Type' type-id='type-id-264' mangled-name='PyEllipsis_Type' visibility='default' filepath='./Include/sliceobject.h' line='33' column='1' elf-symbol-id='PyEllipsis_Type'/>
@@ -9626,72 +9617,72 @@
<return type-id='type-id-5'/>
</function-decl>
</abi-instr>
- <abi-instr address-size='64' path='Objects/structseq.c' comp-dir-path='/src' language='LANG_C11'>
- <class-decl name='PyType_Slot' size-in-bits='128' is-struct='yes' naming-typedef-id='type-id-524' visibility='default' filepath='./Include/object.h' line='493' column='1' id='type-id-525'>
+ <abi-instr address-size='64' path='Objects/structseq.c' comp-dir-path='/home/runner/work/cpython/cpython' language='LANG_C11'>
+ <class-decl name='PyType_Slot' size-in-bits='128' is-struct='yes' naming-typedef-id='type-id-523' visibility='default' filepath='./Include/object.h' line='499' column='1' id='type-id-524'>
<data-member access='public' layout-offset-in-bits='0'>
- <var-decl name='slot' type-id='type-id-5' visibility='default' filepath='./Include/object.h' line='494' column='1'/>
+ <var-decl name='slot' type-id='type-id-5' visibility='default' filepath='./Include/object.h' line='500' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='64'>
- <var-decl name='pfunc' type-id='type-id-29' visibility='default' filepath='./Include/object.h' line='495' column='1'/>
+ <var-decl name='pfunc' type-id='type-id-29' visibility='default' filepath='./Include/object.h' line='501' column='1'/>
</data-member>
</class-decl>
- <typedef-decl name='PyType_Slot' type-id='type-id-525' filepath='./Include/object.h' line='496' column='1' id='type-id-524'/>
- <class-decl name='PyType_Spec' size-in-bits='256' is-struct='yes' naming-typedef-id='type-id-16' visibility='default' filepath='./Include/object.h' line='498' column='1' id='type-id-526'>
+ <typedef-decl name='PyType_Slot' type-id='type-id-524' filepath='./Include/object.h' line='502' column='1' id='type-id-523'/>
+ <class-decl name='PyType_Spec' size-in-bits='256' is-struct='yes' naming-typedef-id='type-id-16' visibility='default' filepath='./Include/object.h' line='504' column='1' id='type-id-525'>
<data-member access='public' layout-offset-in-bits='0'>
- <var-decl name='name' type-id='type-id-6' visibility='default' filepath='./Include/object.h' line='499' column='1'/>
+ <var-decl name='name' type-id='type-id-6' visibility='default' filepath='./Include/object.h' line='505' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='64'>
- <var-decl name='basicsize' type-id='type-id-5' visibility='default' filepath='./Include/object.h' line='500' column='1'/>
+ <var-decl name='basicsize' type-id='type-id-5' visibility='default' filepath='./Include/object.h' line='506' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='96'>
- <var-decl name='itemsize' type-id='type-id-5' visibility='default' filepath='./Include/object.h' line='501' column='1'/>
+ <var-decl name='itemsize' type-id='type-id-5' visibility='default' filepath='./Include/object.h' line='507' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='128'>
- <var-decl name='flags' type-id='type-id-100' visibility='default' filepath='./Include/object.h' line='502' column='1'/>
+ <var-decl name='flags' type-id='type-id-100' visibility='default' filepath='./Include/object.h' line='508' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='192'>
- <var-decl name='slots' type-id='type-id-527' visibility='default' filepath='./Include/object.h' line='503' column='1'/>
+ <var-decl name='slots' type-id='type-id-526' visibility='default' filepath='./Include/object.h' line='509' column='1'/>
</data-member>
</class-decl>
- <typedef-decl name='PyType_Spec' type-id='type-id-526' filepath='./Include/object.h' line='504' column='1' id='type-id-16'/>
- <pointer-type-def type-id='type-id-524' size-in-bits='64' id='type-id-527'/>
- <pointer-type-def type-id='type-id-16' size-in-bits='64' id='type-id-528'/>
+ <typedef-decl name='PyType_Spec' type-id='type-id-525' filepath='./Include/object.h' line='510' column='1' id='type-id-16'/>
+ <pointer-type-def type-id='type-id-523' size-in-bits='64' id='type-id-526'/>
+ <pointer-type-def type-id='type-id-16' size-in-bits='64' id='type-id-527'/>
<function-decl name='_PyType_HasSubclasses' filepath='./Include/internal/pycore_typeobject.h' line='200' column='1' visibility='default' binding='global' size-in-bits='64'>
<parameter type-id='type-id-1'/>
<return type-id='type-id-5'/>
</function-decl>
- <function-decl name='PyType_FromSpecWithBases' mangled-name='PyType_FromSpecWithBases' filepath='./Include/object.h' line='508' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyType_FromSpecWithBases'>
- <parameter type-id='type-id-528'/>
+ <function-decl name='PyType_FromSpecWithBases' mangled-name='PyType_FromSpecWithBases' filepath='./Include/object.h' line='514' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyType_FromSpecWithBases'>
+ <parameter type-id='type-id-527'/>
<parameter type-id='type-id-4'/>
<return type-id='type-id-4'/>
</function-decl>
- <var-decl name='PyStructSequence_UnnamedField' type-id='type-id-529' mangled-name='PyStructSequence_UnnamedField' visibility='default' filepath='./Include/structseq.h' line='22' column='1' elf-symbol-id='PyStructSequence_UnnamedField'/>
- <function-decl name='PyStructSequence_GetItem' mangled-name='PyStructSequence_GetItem' filepath='Objects/structseq.c' line='90' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyStructSequence_GetItem'>
- <parameter type-id='type-id-4' name='op' filepath='Objects/structseq.c' line='90' column='1'/>
- <parameter type-id='type-id-7' name='index' filepath='Objects/structseq.c' line='90' column='1'/>
+ <var-decl name='PyStructSequence_UnnamedField' type-id='type-id-528' mangled-name='PyStructSequence_UnnamedField' visibility='default' filepath='./Include/structseq.h' line='22' column='1' elf-symbol-id='PyStructSequence_UnnamedField'/>
+ <function-decl name='PyStructSequence_GetItem' mangled-name='PyStructSequence_GetItem' filepath='Objects/structseq.c' line='98' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyStructSequence_GetItem'>
+ <parameter type-id='type-id-4' name='op' filepath='Objects/structseq.c' line='98' column='1'/>
+ <parameter type-id='type-id-7' name='index' filepath='Objects/structseq.c' line='98' column='1'/>
<return type-id='type-id-4'/>
</function-decl>
- <function-decl name='PyStructSequence_InitType2' mangled-name='PyStructSequence_InitType2' filepath='Objects/structseq.c' line='662' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyStructSequence_InitType2'>
- <parameter type-id='type-id-1' name='type' filepath='Objects/structseq.c' line='662' column='1'/>
- <parameter type-id='type-id-346' name='desc' filepath='Objects/structseq.c' line='662' column='1'/>
+ <function-decl name='PyStructSequence_InitType2' mangled-name='PyStructSequence_InitType2' filepath='Objects/structseq.c' line='677' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyStructSequence_InitType2'>
+ <parameter type-id='type-id-1' name='type' filepath='Objects/structseq.c' line='677' column='1'/>
+ <parameter type-id='type-id-346' name='desc' filepath='Objects/structseq.c' line='677' column='1'/>
<return type-id='type-id-5'/>
</function-decl>
- <function-decl name='PyStructSequence_InitType' mangled-name='PyStructSequence_InitType' filepath='Objects/structseq.c' line='696' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyStructSequence_InitType'>
- <parameter type-id='type-id-1' name='type' filepath='Objects/structseq.c' line='696' column='1'/>
- <parameter type-id='type-id-346' name='desc' filepath='Objects/structseq.c' line='696' column='1'/>
+ <function-decl name='PyStructSequence_InitType' mangled-name='PyStructSequence_InitType' filepath='Objects/structseq.c' line='711' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyStructSequence_InitType'>
+ <parameter type-id='type-id-1' name='type' filepath='Objects/structseq.c' line='711' column='1'/>
+ <parameter type-id='type-id-346' name='desc' filepath='Objects/structseq.c' line='711' column='1'/>
<return type-id='type-id-3'/>
</function-decl>
- <function-decl name='_PyStructSequence_NewType' mangled-name='_PyStructSequence_NewType' filepath='Objects/structseq.c' line='734' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyStructSequence_NewType'>
- <parameter type-id='type-id-346' name='desc' filepath='Objects/structseq.c' line='734' column='1'/>
- <parameter type-id='type-id-2' name='tp_flags' filepath='Objects/structseq.c' line='734' column='1'/>
+ <function-decl name='_PyStructSequence_NewType' mangled-name='_PyStructSequence_NewType' filepath='Objects/structseq.c' line='749' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyStructSequence_NewType'>
+ <parameter type-id='type-id-346' name='desc' filepath='Objects/structseq.c' line='749' column='1'/>
+ <parameter type-id='type-id-2' name='tp_flags' filepath='Objects/structseq.c' line='749' column='1'/>
<return type-id='type-id-1'/>
</function-decl>
- <function-decl name='PyStructSequence_NewType' mangled-name='PyStructSequence_NewType' filepath='Objects/structseq.c' line='785' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyStructSequence_NewType'>
- <parameter type-id='type-id-346' name='desc' filepath='Objects/structseq.c' line='785' column='1'/>
+ <function-decl name='PyStructSequence_NewType' mangled-name='PyStructSequence_NewType' filepath='Objects/structseq.c' line='801' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyStructSequence_NewType'>
+ <parameter type-id='type-id-346' name='desc' filepath='Objects/structseq.c' line='801' column='1'/>
<return type-id='type-id-1'/>
</function-decl>
</abi-instr>
- <abi-instr address-size='64' path='Objects/tupleobject.c' comp-dir-path='/src' language='LANG_C11'>
+ <abi-instr address-size='64' path='Objects/tupleobject.c' comp-dir-path='/home/runner/work/cpython/cpython' language='LANG_C11'>
<function-decl name='_PyObject_GC_Resize' mangled-name='_PyObject_GC_Resize' filepath='./Include/objimpl.h' line='159' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyObject_GC_Resize'>
<parameter type-id='type-id-319'/>
<parameter type-id='type-id-7'/>
@@ -9711,7 +9702,7 @@
<return type-id='type-id-4'/>
</function-decl>
</abi-instr>
- <abi-instr address-size='64' path='Objects/typeobject.c' comp-dir-path='/src' language='LANG_C11'>
+ <abi-instr address-size='64' path='Objects/typeobject.c' comp-dir-path='/home/runner/work/cpython/cpython' language='LANG_C11'>
<function-decl name='PyEval_GetGlobals' mangled-name='PyEval_GetGlobals' filepath='./Include/ceval.h' line='21' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyEval_GetGlobals'>
<return type-id='type-id-4'/>
</function-decl>
@@ -9789,28 +9780,28 @@
<function-decl name='_PyMemoryView_FromBufferProc' filepath='./Include/internal/pycore_memoryobject.h' line='14' column='1' visibility='default' binding='global' size-in-bits='64'>
<parameter type-id='type-id-4'/>
<parameter type-id='type-id-5'/>
- <parameter type-id='type-id-530'/>
+ <parameter type-id='type-id-529'/>
<return type-id='type-id-4'/>
</function-decl>
<function-decl name='_Py_SetImmortalUntracked' filepath='./Include/internal/pycore_object.h' line='154' column='1' visibility='default' binding='global' size-in-bits='64'>
<parameter type-id='type-id-4'/>
<return type-id='type-id-3'/>
</function-decl>
- <function-decl name='_PyObject_GC_Link' filepath='./Include/internal/pycore_object.h' line='683' column='1' visibility='default' binding='global' size-in-bits='64'>
+ <function-decl name='_PyObject_GC_Link' filepath='./Include/internal/pycore_object.h' line='682' column='1' visibility='default' binding='global' size-in-bits='64'>
<parameter type-id='type-id-4'/>
<return type-id='type-id-3'/>
</function-decl>
- <function-decl name='_PyObject_SetAttributeErrorContext' filepath='./Include/internal/pycore_object.h' line='702' column='1' visibility='default' binding='global' size-in-bits='64'>
+ <function-decl name='_PyObject_SetAttributeErrorContext' filepath='./Include/internal/pycore_object.h' line='701' column='1' visibility='default' binding='global' size-in-bits='64'>
<parameter type-id='type-id-4'/>
<parameter type-id='type-id-4'/>
<return type-id='type-id-5'/>
</function-decl>
- <function-decl name='_PyObject_InitInlineValues' filepath='./Include/internal/pycore_object.h' line='704' column='1' visibility='default' binding='global' size-in-bits='64'>
+ <function-decl name='_PyObject_InitInlineValues' filepath='./Include/internal/pycore_object.h' line='703' column='1' visibility='default' binding='global' size-in-bits='64'>
<parameter type-id='type-id-4'/>
<parameter type-id='type-id-1'/>
<return type-id='type-id-3'/>
</function-decl>
- <function-decl name='_PyObject_IsInstanceDictEmpty' filepath='./Include/internal/pycore_object.h' line='746' column='1' visibility='default' binding='global' size-in-bits='64'>
+ <function-decl name='_PyObject_IsInstanceDictEmpty' filepath='./Include/internal/pycore_object.h' line='745' column='1' visibility='default' binding='global' size-in-bits='64'>
<parameter type-id='type-id-4'/>
<return type-id='type-id-5'/>
</function-decl>
@@ -9834,9 +9825,9 @@
<parameter type-id='type-id-4'/>
<return type-id='type-id-3'/>
</function-decl>
- <var-decl name='PyType_Type' type-id='type-id-264' mangled-name='PyType_Type' visibility='default' filepath='./Include/object.h' line='542' column='1' elf-symbol-id='PyType_Type'/>
- <var-decl name='PyBaseObject_Type' type-id='type-id-264' mangled-name='PyBaseObject_Type' visibility='default' filepath='./Include/object.h' line='543' column='1' elf-symbol-id='PyBaseObject_Type'/>
- <var-decl name='PySuper_Type' type-id='type-id-264' mangled-name='PySuper_Type' visibility='default' filepath='./Include/object.h' line='544' column='1' elf-symbol-id='PySuper_Type'/>
+ <var-decl name='PyType_Type' type-id='type-id-264' mangled-name='PyType_Type' visibility='default' filepath='./Include/object.h' line='548' column='1' elf-symbol-id='PyType_Type'/>
+ <var-decl name='PyBaseObject_Type' type-id='type-id-264' mangled-name='PyBaseObject_Type' visibility='default' filepath='./Include/object.h' line='549' column='1' elf-symbol-id='PyBaseObject_Type'/>
+ <var-decl name='PySuper_Type' type-id='type-id-264' mangled-name='PySuper_Type' visibility='default' filepath='./Include/object.h' line='550' column='1' elf-symbol-id='PySuper_Type'/>
<function-decl name='PyUnicode_IsIdentifier' mangled-name='PyUnicode_IsIdentifier' filepath='./Include/unicodeobject.h' line='1008' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_IsIdentifier'>
<parameter type-id='type-id-4'/>
<return type-id='type-id-5'/>
@@ -9859,7 +9850,7 @@
<return type-id='type-id-100'/>
</function-decl>
<function-decl name='PyType_AddWatcher' mangled-name='PyType_AddWatcher' filepath='Objects/typeobject.c' line='887' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyType_AddWatcher'>
- <parameter type-id='type-id-531' name='callback' filepath='Objects/typeobject.c' line='887' column='1'/>
+ <parameter type-id='type-id-530' name='callback' filepath='Objects/typeobject.c' line='887' column='1'/>
<return type-id='type-id-5'/>
</function-decl>
<function-decl name='PyType_ClearWatcher' mangled-name='PyType_ClearWatcher' filepath='Objects/typeobject.c' line='917' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyType_ClearWatcher'>
@@ -9899,18 +9890,18 @@
<function-decl name='PyType_FromMetaclass' mangled-name='PyType_FromMetaclass' filepath='Objects/typeobject.c' line='4855' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyType_FromMetaclass'>
<parameter type-id='type-id-1' name='metaclass' filepath='Objects/typeobject.c' line='4855' column='1'/>
<parameter type-id='type-id-4' name='module' filepath='Objects/typeobject.c' line='4855' column='1'/>
- <parameter type-id='type-id-528' name='spec' filepath='Objects/typeobject.c' line='4856' column='1'/>
+ <parameter type-id='type-id-527' name='spec' filepath='Objects/typeobject.c' line='4856' column='1'/>
<parameter type-id='type-id-4' name='bases_in' filepath='Objects/typeobject.c' line='4856' column='1'/>
<return type-id='type-id-4'/>
</function-decl>
<function-decl name='PyType_FromModuleAndSpec' mangled-name='PyType_FromModuleAndSpec' filepath='Objects/typeobject.c' line='4862' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyType_FromModuleAndSpec'>
<parameter type-id='type-id-4' name='module' filepath='Objects/typeobject.c' line='4862' column='1'/>
- <parameter type-id='type-id-528' name='spec' filepath='Objects/typeobject.c' line='4862' column='1'/>
+ <parameter type-id='type-id-527' name='spec' filepath='Objects/typeobject.c' line='4862' column='1'/>
<parameter type-id='type-id-4' name='bases' filepath='Objects/typeobject.c' line='4862' column='1'/>
<return type-id='type-id-4'/>
</function-decl>
<function-decl name='PyType_FromSpec' mangled-name='PyType_FromSpec' filepath='Objects/typeobject.c' line='4874' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyType_FromSpec'>
- <parameter type-id='type-id-528' name='spec' filepath='Objects/typeobject.c' line='4874' column='1'/>
+ <parameter type-id='type-id-527' name='spec' filepath='Objects/typeobject.c' line='4874' column='1'/>
<return type-id='type-id-4'/>
</function-decl>
<function-decl name='PyType_GetName' mangled-name='PyType_GetName' filepath='Objects/typeobject.c' line='4880' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyType_GetName'>
@@ -9976,7 +9967,7 @@
<return type-id='type-id-4'/>
</function-decl>
</abi-instr>
- <abi-instr address-size='64' path='Objects/typevarobject.c' comp-dir-path='/src' language='LANG_C11'>
+ <abi-instr address-size='64' path='Objects/typevarobject.c' comp-dir-path='/home/runner/work/cpython/cpython' language='LANG_C11'>
<function-decl name='_PyArg_UnpackKeywordsWithVararg' mangled-name='_PyArg_UnpackKeywordsWithVararg' filepath='./Include/internal/pycore_modsupport.h' line='96' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyArg_UnpackKeywordsWithVararg'>
<parameter type-id='type-id-256'/>
<parameter type-id='type-id-7'/>
@@ -9994,7 +9985,7 @@
<var-decl name='_PyNoDefault_Type' type-id='type-id-264' visibility='default' filepath='./Include/internal/pycore_typevarobject.h' line='21' column='1'/>
<var-decl name='_Py_NoDefaultStruct' type-id='type-id-355' visibility='default' filepath='./Include/internal/pycore_typevarobject.h' line='22' column='1'/>
</abi-instr>
- <abi-instr address-size='64' path='Objects/unicodectype.c' comp-dir-path='/src' language='LANG_C11'>
+ <abi-instr address-size='64' path='Objects/unicodectype.c' comp-dir-path='/home/runner/work/cpython/cpython' language='LANG_C11'>
<function-decl name='_PyUnicode_ToTitlecase' mangled-name='_PyUnicode_ToTitlecase' filepath='Objects/unicodectype.c' line='62' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyUnicode_ToTitlecase'>
<parameter type-id='type-id-257' name='ch' filepath='Objects/unicodectype.c' line='62' column='1'/>
<return type-id='type-id-257'/>
@@ -10016,16 +10007,16 @@
<return type-id='type-id-171'/>
</function-decl>
</abi-instr>
- <abi-instr address-size='64' path='Objects/unicodeobject.c' comp-dir-path='/src' language='LANG_C11'>
- <array-type-def dimensions='1' type-id='type-id-370' size-in-bits='1024' id='type-id-532'>
- <subrange length='128' type-id='type-id-2' id='type-id-533'/>
+ <abi-instr address-size='64' path='Objects/unicodeobject.c' comp-dir-path='/home/runner/work/cpython/cpython' language='LANG_C11'>
+ <array-type-def dimensions='1' type-id='type-id-370' size-in-bits='1024' id='type-id-531'>
+ <subrange length='128' type-id='type-id-2' id='type-id-532'/>
</array-type-def>
- <array-type-def dimensions='1' type-id='type-id-370' size-in-bits='infinite' id='type-id-534'>
+ <array-type-def dimensions='1' type-id='type-id-370' size-in-bits='infinite' id='type-id-533'>
<subrange length='infinite' id='type-id-229'/>
</array-type-def>
- <class-decl name='PyStatus' size-in-bits='256' is-struct='yes' naming-typedef-id='type-id-60' visibility='default' filepath='./Include/cpython/initconfig.h' line='10' column='1' id='type-id-535'>
+ <class-decl name='PyStatus' size-in-bits='256' is-struct='yes' naming-typedef-id='type-id-60' visibility='default' filepath='./Include/cpython/initconfig.h' line='10' column='1' id='type-id-534'>
<data-member access='public' layout-offset-in-bits='0'>
- <var-decl name='_type' type-id='type-id-536' visibility='default' filepath='./Include/cpython/initconfig.h' line='15' column='1'/>
+ <var-decl name='_type' type-id='type-id-535' visibility='default' filepath='./Include/cpython/initconfig.h' line='15' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='64'>
<var-decl name='func' type-id='type-id-6' visibility='default' filepath='./Include/cpython/initconfig.h' line='16' column='1'/>
@@ -10037,11 +10028,11 @@
<var-decl name='exitcode' type-id='type-id-5' visibility='default' filepath='./Include/cpython/initconfig.h' line='18' column='1'/>
</data-member>
</class-decl>
- <typedef-decl name='PyStatus' type-id='type-id-535' filepath='./Include/cpython/initconfig.h' line='19' column='1' id='type-id-60'/>
- <pointer-type-def type-id='type-id-537' size-in-bits='64' id='type-id-538'/>
- <qualified-type-def type-id='type-id-257' const='yes' id='type-id-539'/>
- <qualified-type-def type-id='type-id-540' const='yes' id='type-id-541'/>
- <pointer-type-def type-id='type-id-541' size-in-bits='64' id='type-id-542'/>
+ <typedef-decl name='PyStatus' type-id='type-id-534' filepath='./Include/cpython/initconfig.h' line='19' column='1' id='type-id-60'/>
+ <pointer-type-def type-id='type-id-536' size-in-bits='64' id='type-id-537'/>
+ <qualified-type-def type-id='type-id-257' const='yes' id='type-id-538'/>
+ <qualified-type-def type-id='type-id-539' const='yes' id='type-id-540'/>
+ <pointer-type-def type-id='type-id-540' size-in-bits='64' id='type-id-541'/>
<function-decl name='PyCodec_Encode' mangled-name='PyCodec_Encode' filepath='./Include/codecs.h' line='59' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyCodec_Encode'>
<parameter type-id='type-id-4'/>
<parameter type-id='type-id-6'/>
@@ -10075,11 +10066,11 @@
<return type-id='type-id-5'/>
</function-decl>
<function-decl name='_PyUnicode_IsWhitespace' mangled-name='_PyUnicode_IsWhitespace' filepath='./Include/cpython/unicodeobject.h' line='605' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyUnicode_IsWhitespace'>
- <parameter type-id='type-id-539'/>
+ <parameter type-id='type-id-538'/>
<return type-id='type-id-5'/>
</function-decl>
<function-decl name='_PyUnicode_IsLinebreak' mangled-name='_PyUnicode_IsLinebreak' filepath='./Include/cpython/unicodeobject.h' line='609' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyUnicode_IsLinebreak'>
- <parameter type-id='type-id-539'/>
+ <parameter type-id='type-id-538'/>
<return type-id='type-id-5'/>
</function-decl>
<function-decl name='_PyUnicode_ToDecimalDigit' mangled-name='_PyUnicode_ToDecimalDigit' filepath='./Include/cpython/unicodeobject.h' line='625' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyUnicode_ToDecimalDigit'>
@@ -10102,7 +10093,7 @@
<parameter type-id='type-id-257'/>
<return type-id='type-id-5'/>
</function-decl>
- <var-decl name='_Py_ascii_whitespace' type-id='type-id-534' mangled-name='_Py_ascii_whitespace' visibility='default' filepath='./Include/cpython/unicodeobject.h' line='658' column='1' elf-symbol-id='_Py_ascii_whitespace'/>
+ <var-decl name='_Py_ascii_whitespace' type-id='type-id-533' mangled-name='_Py_ascii_whitespace' visibility='default' filepath='./Include/cpython/unicodeobject.h' line='658' column='1' elf-symbol-id='_Py_ascii_whitespace'/>
<function-decl name='_PyCodec_InitRegistry' filepath='./Include/internal/pycore_codecs.h' line='16' column='1' visibility='default' binding='global' size-in-bits='64'>
<parameter type-id='type-id-27'/>
<return type-id='type-id-60'/>
@@ -10129,7 +10120,7 @@
<parameter type-id='type-id-56'/>
<parameter type-id='type-id-259'/>
<parameter type-id='type-id-5'/>
- <parameter type-id='type-id-543'/>
+ <parameter type-id='type-id-542'/>
<return type-id='type-id-5'/>
</function-decl>
<function-decl name='_Py_EncodeLocaleEx' mangled-name='_Py_EncodeLocaleEx' filepath='./Include/internal/pycore_fileutils.h' line='51' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_EncodeLocaleEx'>
@@ -10138,33 +10129,33 @@
<parameter type-id='type-id-56'/>
<parameter type-id='type-id-259'/>
<parameter type-id='type-id-5'/>
- <parameter type-id='type-id-543'/>
+ <parameter type-id='type-id-542'/>
<return type-id='type-id-5'/>
</function-decl>
<function-decl name='_Py_hashtable_new_full' mangled-name='_Py_hashtable_new_full' filepath='./Include/internal/pycore_hashtable.h' line='86' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_hashtable_new_full'>
+ <parameter type-id='type-id-543'/>
<parameter type-id='type-id-544'/>
<parameter type-id='type-id-545'/>
- <parameter type-id='type-id-546'/>
- <parameter type-id='type-id-546'/>
- <parameter type-id='type-id-538'/>
- <return type-id='type-id-547'/>
+ <parameter type-id='type-id-545'/>
+ <parameter type-id='type-id-537'/>
+ <return type-id='type-id-546'/>
</function-decl>
<function-decl name='_Py_hashtable_destroy' mangled-name='_Py_hashtable_destroy' filepath='./Include/internal/pycore_hashtable.h' line='93' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_hashtable_destroy'>
- <parameter type-id='type-id-547'/>
+ <parameter type-id='type-id-546'/>
<return type-id='type-id-3'/>
</function-decl>
<function-decl name='_Py_hashtable_len' mangled-name='_Py_hashtable_len' filepath='./Include/internal/pycore_hashtable.h' line='110' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_hashtable_len'>
- <parameter type-id='type-id-542'/>
+ <parameter type-id='type-id-541'/>
<return type-id='type-id-21'/>
</function-decl>
<function-decl name='_Py_hashtable_set' mangled-name='_Py_hashtable_set' filepath='./Include/internal/pycore_hashtable.h' line='114' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_hashtable_set'>
- <parameter type-id='type-id-547'/>
+ <parameter type-id='type-id-546'/>
<parameter type-id='type-id-29'/>
<parameter type-id='type-id-29'/>
<return type-id='type-id-5'/>
</function-decl>
<function-decl name='_Py_hashtable_get' mangled-name='_Py_hashtable_get' filepath='./Include/internal/pycore_hashtable.h' line='134' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_hashtable_get'>
- <parameter type-id='type-id-547'/>
+ <parameter type-id='type-id-546'/>
<parameter type-id='type-id-29'/>
<return type-id='type-id-29'/>
</function-decl>
@@ -10214,22 +10205,22 @@
</function-decl>
<function-decl name='_PyUnicode_ToLowerFull' filepath='./Include/internal/pycore_unicodeobject.h' line='21' column='1' visibility='default' binding='global' size-in-bits='64'>
<parameter type-id='type-id-257'/>
- <parameter type-id='type-id-548'/>
+ <parameter type-id='type-id-547'/>
<return type-id='type-id-5'/>
</function-decl>
<function-decl name='_PyUnicode_ToTitleFull' filepath='./Include/internal/pycore_unicodeobject.h' line='22' column='1' visibility='default' binding='global' size-in-bits='64'>
<parameter type-id='type-id-257'/>
- <parameter type-id='type-id-548'/>
+ <parameter type-id='type-id-547'/>
<return type-id='type-id-5'/>
</function-decl>
<function-decl name='_PyUnicode_ToUpperFull' filepath='./Include/internal/pycore_unicodeobject.h' line='23' column='1' visibility='default' binding='global' size-in-bits='64'>
<parameter type-id='type-id-257'/>
- <parameter type-id='type-id-548'/>
+ <parameter type-id='type-id-547'/>
<return type-id='type-id-5'/>
</function-decl>
<function-decl name='_PyUnicode_ToFoldedFull' filepath='./Include/internal/pycore_unicodeobject.h' line='24' column='1' visibility='default' binding='global' size-in-bits='64'>
<parameter type-id='type-id-257'/>
- <parameter type-id='type-id-548'/>
+ <parameter type-id='type-id-547'/>
<return type-id='type-id-5'/>
</function-decl>
<function-decl name='_PyUnicode_IsCaseIgnorable' filepath='./Include/internal/pycore_unicodeobject.h' line='25' column='1' visibility='default' binding='global' size-in-bits='64'>
@@ -10267,410 +10258,410 @@
<parameter type-id='type-id-21'/>
<return type-id='type-id-5'/>
</function-decl>
- <function-decl name='_Py_GetErrorHandler' mangled-name='_Py_GetErrorHandler' filepath='Objects/unicodeobject.c' line='484' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_GetErrorHandler'>
- <parameter type-id='type-id-6' name='errors' filepath='Objects/unicodeobject.c' line='484' column='1'/>
- <return type-id='type-id-543'/>
+ <function-decl name='_Py_GetErrorHandler' mangled-name='_Py_GetErrorHandler' filepath='Objects/unicodeobject.c' line='511' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_GetErrorHandler'>
+ <parameter type-id='type-id-6' name='errors' filepath='Objects/unicodeobject.c' line='511' column='1'/>
+ <return type-id='type-id-542'/>
</function-decl>
- <function-decl name='PyUnicode_CopyCharacters' mangled-name='PyUnicode_CopyCharacters' filepath='Objects/unicodeobject.c' line='1570' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_CopyCharacters'>
- <parameter type-id='type-id-4' name='to' filepath='Objects/unicodeobject.c' line='1570' column='1'/>
- <parameter type-id='type-id-7' name='to_start' filepath='Objects/unicodeobject.c' line='1570' column='1'/>
- <parameter type-id='type-id-4' name='from' filepath='Objects/unicodeobject.c' line='1571' column='1'/>
- <parameter type-id='type-id-7' name='from_start' filepath='Objects/unicodeobject.c' line='1571' column='1'/>
- <parameter type-id='type-id-7' name='how_many' filepath='Objects/unicodeobject.c' line='1572' column='1'/>
+ <function-decl name='PyUnicode_CopyCharacters' mangled-name='PyUnicode_CopyCharacters' filepath='Objects/unicodeobject.c' line='1597' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_CopyCharacters'>
+ <parameter type-id='type-id-4' name='to' filepath='Objects/unicodeobject.c' line='1597' column='1'/>
+ <parameter type-id='type-id-7' name='to_start' filepath='Objects/unicodeobject.c' line='1597' column='1'/>
+ <parameter type-id='type-id-4' name='from' filepath='Objects/unicodeobject.c' line='1598' column='1'/>
+ <parameter type-id='type-id-7' name='from_start' filepath='Objects/unicodeobject.c' line='1598' column='1'/>
+ <parameter type-id='type-id-7' name='how_many' filepath='Objects/unicodeobject.c' line='1599' column='1'/>
<return type-id='type-id-7'/>
</function-decl>
- <function-decl name='PyUnicode_Resize' mangled-name='PyUnicode_Resize' filepath='Objects/unicodeobject.c' line='1831' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_Resize'>
- <parameter type-id='type-id-236' name='p_unicode' filepath='Objects/unicodeobject.c' line='1831' column='1'/>
- <parameter type-id='type-id-7' name='length' filepath='Objects/unicodeobject.c' line='1831' column='1'/>
+ <function-decl name='PyUnicode_Resize' mangled-name='PyUnicode_Resize' filepath='Objects/unicodeobject.c' line='1858' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_Resize'>
+ <parameter type-id='type-id-236' name='p_unicode' filepath='Objects/unicodeobject.c' line='1858' column='1'/>
+ <parameter type-id='type-id-7' name='length' filepath='Objects/unicodeobject.c' line='1858' column='1'/>
<return type-id='type-id-5'/>
</function-decl>
- <function-decl name='PyUnicode_FromWideChar' mangled-name='PyUnicode_FromWideChar' filepath='Objects/unicodeobject.c' line='1933' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_FromWideChar'>
- <parameter type-id='type-id-18' name='u' filepath='Objects/unicodeobject.c' line='1933' column='1'/>
- <parameter type-id='type-id-7' name='size' filepath='Objects/unicodeobject.c' line='1933' column='1'/>
+ <function-decl name='PyUnicode_FromWideChar' mangled-name='PyUnicode_FromWideChar' filepath='Objects/unicodeobject.c' line='1960' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_FromWideChar'>
+ <parameter type-id='type-id-18' name='u' filepath='Objects/unicodeobject.c' line='1960' column='1'/>
+ <parameter type-id='type-id-7' name='size' filepath='Objects/unicodeobject.c' line='1960' column='1'/>
<return type-id='type-id-4'/>
</function-decl>
- <function-decl name='PyUnicode_FromKindAndData' mangled-name='PyUnicode_FromKindAndData' filepath='Objects/unicodeobject.c' line='2240' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_FromKindAndData'>
- <parameter type-id='type-id-5' name='kind' filepath='Objects/unicodeobject.c' line='2240' column='1'/>
- <parameter type-id='type-id-29' name='buffer' filepath='Objects/unicodeobject.c' line='2240' column='1'/>
- <parameter type-id='type-id-7' name='size' filepath='Objects/unicodeobject.c' line='2240' column='1'/>
+ <function-decl name='PyUnicode_FromKindAndData' mangled-name='PyUnicode_FromKindAndData' filepath='Objects/unicodeobject.c' line='2267' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_FromKindAndData'>
+ <parameter type-id='type-id-5' name='kind' filepath='Objects/unicodeobject.c' line='2267' column='1'/>
+ <parameter type-id='type-id-29' name='buffer' filepath='Objects/unicodeobject.c' line='2267' column='1'/>
+ <parameter type-id='type-id-7' name='size' filepath='Objects/unicodeobject.c' line='2267' column='1'/>
<return type-id='type-id-4'/>
</function-decl>
- <function-decl name='PyUnicode_AsUCS4' mangled-name='PyUnicode_AsUCS4' filepath='Objects/unicodeobject.c' line='2460' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_AsUCS4'>
- <parameter type-id='type-id-4' name='string' filepath='Objects/unicodeobject.c' line='2460' column='1'/>
- <parameter type-id='type-id-548' name='target' filepath='Objects/unicodeobject.c' line='2460' column='1'/>
- <parameter type-id='type-id-7' name='targetsize' filepath='Objects/unicodeobject.c' line='2460' column='1'/>
- <parameter type-id='type-id-5' name='copy_null' filepath='Objects/unicodeobject.c' line='2461' column='1'/>
- <return type-id='type-id-548'/>
+ <function-decl name='PyUnicode_AsUCS4' mangled-name='PyUnicode_AsUCS4' filepath='Objects/unicodeobject.c' line='2487' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_AsUCS4'>
+ <parameter type-id='type-id-4' name='string' filepath='Objects/unicodeobject.c' line='2487' column='1'/>
+ <parameter type-id='type-id-547' name='target' filepath='Objects/unicodeobject.c' line='2487' column='1'/>
+ <parameter type-id='type-id-7' name='targetsize' filepath='Objects/unicodeobject.c' line='2487' column='1'/>
+ <parameter type-id='type-id-5' name='copy_null' filepath='Objects/unicodeobject.c' line='2488' column='1'/>
+ <return type-id='type-id-547'/>
</function-decl>
- <function-decl name='PyUnicode_AsUCS4Copy' mangled-name='PyUnicode_AsUCS4Copy' filepath='Objects/unicodeobject.c' line='2471' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_AsUCS4Copy'>
- <parameter type-id='type-id-4' name='string' filepath='Objects/unicodeobject.c' line='2471' column='1'/>
- <return type-id='type-id-548'/>
+ <function-decl name='PyUnicode_AsUCS4Copy' mangled-name='PyUnicode_AsUCS4Copy' filepath='Objects/unicodeobject.c' line='2498' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_AsUCS4Copy'>
+ <parameter type-id='type-id-4' name='string' filepath='Objects/unicodeobject.c' line='2498' column='1'/>
+ <return type-id='type-id-547'/>
</function-decl>
- <function-decl name='PyUnicode_AsWideCharString' mangled-name='PyUnicode_AsWideCharString' filepath='Objects/unicodeobject.c' line='3199' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_AsWideCharString'>
- <parameter type-id='type-id-4' name='unicode' filepath='Objects/unicodeobject.c' line='3199' column='1'/>
- <parameter type-id='type-id-8' name='size' filepath='Objects/unicodeobject.c' line='3200' column='1'/>
+ <function-decl name='PyUnicode_AsWideCharString' mangled-name='PyUnicode_AsWideCharString' filepath='Objects/unicodeobject.c' line='3226' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_AsWideCharString'>
+ <parameter type-id='type-id-4' name='unicode' filepath='Objects/unicodeobject.c' line='3226' column='1'/>
+ <parameter type-id='type-id-8' name='size' filepath='Objects/unicodeobject.c' line='3227' column='1'/>
<return type-id='type-id-57'/>
</function-decl>
- <function-decl name='PyUnicode_FromOrdinal' mangled-name='PyUnicode_FromOrdinal' filepath='Objects/unicodeobject.c' line='3295' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_FromOrdinal'>
- <parameter type-id='type-id-5' name='ordinal' filepath='Objects/unicodeobject.c' line='3295' column='1'/>
+ <function-decl name='PyUnicode_FromOrdinal' mangled-name='PyUnicode_FromOrdinal' filepath='Objects/unicodeobject.c' line='3322' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_FromOrdinal'>
+ <parameter type-id='type-id-5' name='ordinal' filepath='Objects/unicodeobject.c' line='3322' column='1'/>
<return type-id='type-id-4'/>
</function-decl>
- <function-decl name='PyUnicode_FromObject' mangled-name='PyUnicode_FromObject' filepath='Objects/unicodeobject.c' line='3307' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_FromObject'>
- <parameter type-id='type-id-4' name='obj' filepath='Objects/unicodeobject.c' line='3307' column='1'/>
+ <function-decl name='PyUnicode_FromObject' mangled-name='PyUnicode_FromObject' filepath='Objects/unicodeobject.c' line='3334' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_FromObject'>
+ <parameter type-id='type-id-4' name='obj' filepath='Objects/unicodeobject.c' line='3334' column='1'/>
<return type-id='type-id-4'/>
</function-decl>
- <function-decl name='PyUnicode_AsDecodedObject' mangled-name='PyUnicode_AsDecodedObject' filepath='Objects/unicodeobject.c' line='3518' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_AsDecodedObject'>
- <parameter type-id='type-id-4' name='unicode' filepath='Objects/unicodeobject.c' line='3518' column='1'/>
- <parameter type-id='type-id-6' name='encoding' filepath='Objects/unicodeobject.c' line='3519' column='1'/>
- <parameter type-id='type-id-6' name='errors' filepath='Objects/unicodeobject.c' line='3520' column='1'/>
+ <function-decl name='PyUnicode_AsDecodedObject' mangled-name='PyUnicode_AsDecodedObject' filepath='Objects/unicodeobject.c' line='3545' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_AsDecodedObject'>
+ <parameter type-id='type-id-4' name='unicode' filepath='Objects/unicodeobject.c' line='3545' column='1'/>
+ <parameter type-id='type-id-6' name='encoding' filepath='Objects/unicodeobject.c' line='3546' column='1'/>
+ <parameter type-id='type-id-6' name='errors' filepath='Objects/unicodeobject.c' line='3547' column='1'/>
<return type-id='type-id-4'/>
</function-decl>
- <function-decl name='PyUnicode_AsDecodedUnicode' mangled-name='PyUnicode_AsDecodedUnicode' filepath='Objects/unicodeobject.c' line='3540' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_AsDecodedUnicode'>
- <parameter type-id='type-id-4' name='unicode' filepath='Objects/unicodeobject.c' line='3540' column='1'/>
- <parameter type-id='type-id-6' name='encoding' filepath='Objects/unicodeobject.c' line='3541' column='1'/>
- <parameter type-id='type-id-6' name='errors' filepath='Objects/unicodeobject.c' line='3542' column='1'/>
+ <function-decl name='PyUnicode_AsDecodedUnicode' mangled-name='PyUnicode_AsDecodedUnicode' filepath='Objects/unicodeobject.c' line='3567' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_AsDecodedUnicode'>
+ <parameter type-id='type-id-4' name='unicode' filepath='Objects/unicodeobject.c' line='3567' column='1'/>
+ <parameter type-id='type-id-6' name='encoding' filepath='Objects/unicodeobject.c' line='3568' column='1'/>
+ <parameter type-id='type-id-6' name='errors' filepath='Objects/unicodeobject.c' line='3569' column='1'/>
<return type-id='type-id-4'/>
</function-decl>
- <function-decl name='PyUnicode_AsEncodedObject' mangled-name='PyUnicode_AsEncodedObject' filepath='Objects/unicodeobject.c' line='3579' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_AsEncodedObject'>
- <parameter type-id='type-id-4' name='unicode' filepath='Objects/unicodeobject.c' line='3579' column='1'/>
- <parameter type-id='type-id-6' name='encoding' filepath='Objects/unicodeobject.c' line='3580' column='1'/>
- <parameter type-id='type-id-6' name='errors' filepath='Objects/unicodeobject.c' line='3581' column='1'/>
+ <function-decl name='PyUnicode_AsEncodedObject' mangled-name='PyUnicode_AsEncodedObject' filepath='Objects/unicodeobject.c' line='3606' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_AsEncodedObject'>
+ <parameter type-id='type-id-4' name='unicode' filepath='Objects/unicodeobject.c' line='3606' column='1'/>
+ <parameter type-id='type-id-6' name='encoding' filepath='Objects/unicodeobject.c' line='3607' column='1'/>
+ <parameter type-id='type-id-6' name='errors' filepath='Objects/unicodeobject.c' line='3608' column='1'/>
<return type-id='type-id-4'/>
</function-decl>
- <function-decl name='PyUnicode_EncodeLocale' mangled-name='PyUnicode_EncodeLocale' filepath='Objects/unicodeobject.c' line='3661' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_EncodeLocale'>
- <parameter type-id='type-id-4' name='unicode' filepath='Objects/unicodeobject.c' line='3661' column='1'/>
- <parameter type-id='type-id-6' name='errors' filepath='Objects/unicodeobject.c' line='3661' column='1'/>
+ <function-decl name='PyUnicode_EncodeLocale' mangled-name='PyUnicode_EncodeLocale' filepath='Objects/unicodeobject.c' line='3688' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_EncodeLocale'>
+ <parameter type-id='type-id-4' name='unicode' filepath='Objects/unicodeobject.c' line='3688' column='1'/>
+ <parameter type-id='type-id-6' name='errors' filepath='Objects/unicodeobject.c' line='3688' column='1'/>
<return type-id='type-id-4'/>
</function-decl>
- <function-decl name='PyUnicode_EncodeFSDefault' mangled-name='PyUnicode_EncodeFSDefault' filepath='Objects/unicodeobject.c' line='3668' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_EncodeFSDefault'>
- <parameter type-id='type-id-4' name='unicode' filepath='Objects/unicodeobject.c' line='3668' column='1'/>
+ <function-decl name='PyUnicode_EncodeFSDefault' mangled-name='PyUnicode_EncodeFSDefault' filepath='Objects/unicodeobject.c' line='3695' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_EncodeFSDefault'>
+ <parameter type-id='type-id-4' name='unicode' filepath='Objects/unicodeobject.c' line='3695' column='1'/>
<return type-id='type-id-4'/>
</function-decl>
- <function-decl name='PyUnicode_AsEncodedUnicode' mangled-name='PyUnicode_AsEncodedUnicode' filepath='Objects/unicodeobject.c' line='3802' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_AsEncodedUnicode'>
- <parameter type-id='type-id-4' name='unicode' filepath='Objects/unicodeobject.c' line='3802' column='1'/>
- <parameter type-id='type-id-6' name='encoding' filepath='Objects/unicodeobject.c' line='3803' column='1'/>
- <parameter type-id='type-id-6' name='errors' filepath='Objects/unicodeobject.c' line='3804' column='1'/>
+ <function-decl name='PyUnicode_AsEncodedUnicode' mangled-name='PyUnicode_AsEncodedUnicode' filepath='Objects/unicodeobject.c' line='3829' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_AsEncodedUnicode'>
+ <parameter type-id='type-id-4' name='unicode' filepath='Objects/unicodeobject.c' line='3829' column='1'/>
+ <parameter type-id='type-id-6' name='encoding' filepath='Objects/unicodeobject.c' line='3830' column='1'/>
+ <parameter type-id='type-id-6' name='errors' filepath='Objects/unicodeobject.c' line='3831' column='1'/>
<return type-id='type-id-4'/>
</function-decl>
- <function-decl name='PyUnicode_DecodeLocaleAndSize' mangled-name='PyUnicode_DecodeLocaleAndSize' filepath='Objects/unicodeobject.c' line='3882' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_DecodeLocaleAndSize'>
- <parameter type-id='type-id-6' name='str' filepath='Objects/unicodeobject.c' line='3882' column='1'/>
- <parameter type-id='type-id-7' name='len' filepath='Objects/unicodeobject.c' line='3882' column='1'/>
- <parameter type-id='type-id-6' name='errors' filepath='Objects/unicodeobject.c' line='3883' column='1'/>
+ <function-decl name='PyUnicode_DecodeLocaleAndSize' mangled-name='PyUnicode_DecodeLocaleAndSize' filepath='Objects/unicodeobject.c' line='3909' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_DecodeLocaleAndSize'>
+ <parameter type-id='type-id-6' name='str' filepath='Objects/unicodeobject.c' line='3909' column='1'/>
+ <parameter type-id='type-id-7' name='len' filepath='Objects/unicodeobject.c' line='3909' column='1'/>
+ <parameter type-id='type-id-6' name='errors' filepath='Objects/unicodeobject.c' line='3910' column='1'/>
<return type-id='type-id-4'/>
</function-decl>
- <function-decl name='PyUnicode_DecodeLocale' mangled-name='PyUnicode_DecodeLocale' filepath='Objects/unicodeobject.c' line='3890' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_DecodeLocale'>
- <parameter type-id='type-id-6' name='str' filepath='Objects/unicodeobject.c' line='3890' column='1'/>
- <parameter type-id='type-id-6' name='errors' filepath='Objects/unicodeobject.c' line='3890' column='1'/>
+ <function-decl name='PyUnicode_DecodeLocale' mangled-name='PyUnicode_DecodeLocale' filepath='Objects/unicodeobject.c' line='3917' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_DecodeLocale'>
+ <parameter type-id='type-id-6' name='str' filepath='Objects/unicodeobject.c' line='3917' column='1'/>
+ <parameter type-id='type-id-6' name='errors' filepath='Objects/unicodeobject.c' line='3917' column='1'/>
<return type-id='type-id-4'/>
</function-decl>
- <function-decl name='PyUnicode_DecodeFSDefaultAndSize' mangled-name='PyUnicode_DecodeFSDefaultAndSize' filepath='Objects/unicodeobject.c' line='3905' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_DecodeFSDefaultAndSize'>
- <parameter type-id='type-id-6' name='s' filepath='Objects/unicodeobject.c' line='3905' column='1'/>
- <parameter type-id='type-id-7' name='size' filepath='Objects/unicodeobject.c' line='3905' column='1'/>
+ <function-decl name='PyUnicode_DecodeFSDefaultAndSize' mangled-name='PyUnicode_DecodeFSDefaultAndSize' filepath='Objects/unicodeobject.c' line='3932' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_DecodeFSDefaultAndSize'>
+ <parameter type-id='type-id-6' name='s' filepath='Objects/unicodeobject.c' line='3932' column='1'/>
+ <parameter type-id='type-id-7' name='size' filepath='Objects/unicodeobject.c' line='3932' column='1'/>
<return type-id='type-id-4'/>
</function-decl>
- <function-decl name='PyUnicode_FSConverter' mangled-name='PyUnicode_FSConverter' filepath='Objects/unicodeobject.c' line='3941' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_FSConverter'>
- <parameter type-id='type-id-4' name='arg' filepath='Objects/unicodeobject.c' line='3941' column='1'/>
- <parameter type-id='type-id-29' name='addr' filepath='Objects/unicodeobject.c' line='3941' column='1'/>
+ <function-decl name='PyUnicode_FSConverter' mangled-name='PyUnicode_FSConverter' filepath='Objects/unicodeobject.c' line='3968' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_FSConverter'>
+ <parameter type-id='type-id-4' name='arg' filepath='Objects/unicodeobject.c' line='3968' column='1'/>
+ <parameter type-id='type-id-29' name='addr' filepath='Objects/unicodeobject.c' line='3968' column='1'/>
<return type-id='type-id-5'/>
</function-decl>
- <function-decl name='PyUnicode_FSDecoder' mangled-name='PyUnicode_FSDecoder' filepath='Objects/unicodeobject.c' line='3981' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_FSDecoder'>
- <parameter type-id='type-id-4' name='arg' filepath='Objects/unicodeobject.c' line='3981' column='1'/>
- <parameter type-id='type-id-29' name='addr' filepath='Objects/unicodeobject.c' line='3981' column='1'/>
+ <function-decl name='PyUnicode_FSDecoder' mangled-name='PyUnicode_FSDecoder' filepath='Objects/unicodeobject.c' line='4008' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_FSDecoder'>
+ <parameter type-id='type-id-4' name='arg' filepath='Objects/unicodeobject.c' line='4008' column='1'/>
+ <parameter type-id='type-id-29' name='addr' filepath='Objects/unicodeobject.c' line='4008' column='1'/>
<return type-id='type-id-5'/>
</function-decl>
- <function-decl name='_PyUnicode_AsUTF8NoNUL' mangled-name='_PyUnicode_AsUTF8NoNUL' filepath='Objects/unicodeobject.c' line='4060' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyUnicode_AsUTF8NoNUL'>
- <parameter type-id='type-id-4' name='unicode' filepath='Objects/unicodeobject.c' line='4060' column='1'/>
+ <function-decl name='_PyUnicode_AsUTF8NoNUL' mangled-name='_PyUnicode_AsUTF8NoNUL' filepath='Objects/unicodeobject.c' line='4087' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyUnicode_AsUTF8NoNUL'>
+ <parameter type-id='type-id-4' name='unicode' filepath='Objects/unicodeobject.c' line='4087' column='1'/>
<return type-id='type-id-6'/>
</function-decl>
- <function-decl name='PyUnicode_GetSize' mangled-name='PyUnicode_GetSize' filepath='Objects/unicodeobject.c' line='4080' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_GetSize'>
- <parameter type-id='type-id-4' name='unicode' filepath='Objects/unicodeobject.c' line='4080' column='1'/>
+ <function-decl name='PyUnicode_GetSize' mangled-name='PyUnicode_GetSize' filepath='Objects/unicodeobject.c' line='4107' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_GetSize'>
+ <parameter type-id='type-id-4' name='unicode' filepath='Objects/unicodeobject.c' line='4107' column='1'/>
<return type-id='type-id-7'/>
</function-decl>
- <function-decl name='PyUnicode_GetLength' mangled-name='PyUnicode_GetLength' filepath='Objects/unicodeobject.c' line='4088' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_GetLength'>
- <parameter type-id='type-id-4' name='unicode' filepath='Objects/unicodeobject.c' line='4088' column='1'/>
+ <function-decl name='PyUnicode_GetLength' mangled-name='PyUnicode_GetLength' filepath='Objects/unicodeobject.c' line='4115' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_GetLength'>
+ <parameter type-id='type-id-4' name='unicode' filepath='Objects/unicodeobject.c' line='4115' column='1'/>
<return type-id='type-id-7'/>
</function-decl>
- <function-decl name='PyUnicode_WriteChar' mangled-name='PyUnicode_WriteChar' filepath='Objects/unicodeobject.c' line='4117' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_WriteChar'>
- <parameter type-id='type-id-4' name='unicode' filepath='Objects/unicodeobject.c' line='4117' column='1'/>
- <parameter type-id='type-id-7' name='index' filepath='Objects/unicodeobject.c' line='4117' column='1'/>
- <parameter type-id='type-id-257' name='ch' filepath='Objects/unicodeobject.c' line='4117' column='1'/>
+ <function-decl name='PyUnicode_WriteChar' mangled-name='PyUnicode_WriteChar' filepath='Objects/unicodeobject.c' line='4144' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_WriteChar'>
+ <parameter type-id='type-id-4' name='unicode' filepath='Objects/unicodeobject.c' line='4144' column='1'/>
+ <parameter type-id='type-id-7' name='index' filepath='Objects/unicodeobject.c' line='4144' column='1'/>
+ <parameter type-id='type-id-257' name='ch' filepath='Objects/unicodeobject.c' line='4144' column='1'/>
<return type-id='type-id-5'/>
</function-decl>
- <function-decl name='PyUnicode_DecodeUTF7' mangled-name='PyUnicode_DecodeUTF7' filepath='Objects/unicodeobject.c' line='4479' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_DecodeUTF7'>
- <parameter type-id='type-id-6' name='s' filepath='Objects/unicodeobject.c' line='4479' column='1'/>
- <parameter type-id='type-id-7' name='size' filepath='Objects/unicodeobject.c' line='4480' column='1'/>
- <parameter type-id='type-id-6' name='errors' filepath='Objects/unicodeobject.c' line='4481' column='1'/>
+ <function-decl name='PyUnicode_DecodeUTF7' mangled-name='PyUnicode_DecodeUTF7' filepath='Objects/unicodeobject.c' line='4506' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_DecodeUTF7'>
+ <parameter type-id='type-id-6' name='s' filepath='Objects/unicodeobject.c' line='4506' column='1'/>
+ <parameter type-id='type-id-7' name='size' filepath='Objects/unicodeobject.c' line='4507' column='1'/>
+ <parameter type-id='type-id-6' name='errors' filepath='Objects/unicodeobject.c' line='4508' column='1'/>
<return type-id='type-id-4'/>
</function-decl>
- <function-decl name='PyUnicode_DecodeUTF7Stateful' mangled-name='PyUnicode_DecodeUTF7Stateful' filepath='Objects/unicodeobject.c' line='4494' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_DecodeUTF7Stateful'>
- <parameter type-id='type-id-6' name='s' filepath='Objects/unicodeobject.c' line='4494' column='1'/>
- <parameter type-id='type-id-7' name='size' filepath='Objects/unicodeobject.c' line='4495' column='1'/>
- <parameter type-id='type-id-6' name='errors' filepath='Objects/unicodeobject.c' line='4496' column='1'/>
- <parameter type-id='type-id-8' name='consumed' filepath='Objects/unicodeobject.c' line='4497' column='1'/>
+ <function-decl name='PyUnicode_DecodeUTF7Stateful' mangled-name='PyUnicode_DecodeUTF7Stateful' filepath='Objects/unicodeobject.c' line='4521' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_DecodeUTF7Stateful'>
+ <parameter type-id='type-id-6' name='s' filepath='Objects/unicodeobject.c' line='4521' column='1'/>
+ <parameter type-id='type-id-7' name='size' filepath='Objects/unicodeobject.c' line='4522' column='1'/>
+ <parameter type-id='type-id-6' name='errors' filepath='Objects/unicodeobject.c' line='4523' column='1'/>
+ <parameter type-id='type-id-8' name='consumed' filepath='Objects/unicodeobject.c' line='4524' column='1'/>
<return type-id='type-id-4'/>
</function-decl>
- <function-decl name='PyUnicode_DecodeUTF32' mangled-name='PyUnicode_DecodeUTF32' filepath='Objects/unicodeobject.c' line='5441' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_DecodeUTF32'>
- <parameter type-id='type-id-6' name='s' filepath='Objects/unicodeobject.c' line='5441' column='1'/>
- <parameter type-id='type-id-7' name='size' filepath='Objects/unicodeobject.c' line='5442' column='1'/>
- <parameter type-id='type-id-6' name='errors' filepath='Objects/unicodeobject.c' line='5443' column='1'/>
- <parameter type-id='type-id-175' name='byteorder' filepath='Objects/unicodeobject.c' line='5444' column='1'/>
+ <function-decl name='PyUnicode_DecodeUTF32' mangled-name='PyUnicode_DecodeUTF32' filepath='Objects/unicodeobject.c' line='5468' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_DecodeUTF32'>
+ <parameter type-id='type-id-6' name='s' filepath='Objects/unicodeobject.c' line='5468' column='1'/>
+ <parameter type-id='type-id-7' name='size' filepath='Objects/unicodeobject.c' line='5469' column='1'/>
+ <parameter type-id='type-id-6' name='errors' filepath='Objects/unicodeobject.c' line='5470' column='1'/>
+ <parameter type-id='type-id-175' name='byteorder' filepath='Objects/unicodeobject.c' line='5471' column='1'/>
<return type-id='type-id-4'/>
</function-decl>
- <function-decl name='PyUnicode_DecodeUTF32Stateful' mangled-name='PyUnicode_DecodeUTF32Stateful' filepath='Objects/unicodeobject.c' line='5450' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_DecodeUTF32Stateful'>
- <parameter type-id='type-id-6' name='s' filepath='Objects/unicodeobject.c' line='5450' column='1'/>
- <parameter type-id='type-id-7' name='size' filepath='Objects/unicodeobject.c' line='5451' column='1'/>
- <parameter type-id='type-id-6' name='errors' filepath='Objects/unicodeobject.c' line='5452' column='1'/>
- <parameter type-id='type-id-175' name='byteorder' filepath='Objects/unicodeobject.c' line='5453' column='1'/>
- <parameter type-id='type-id-8' name='consumed' filepath='Objects/unicodeobject.c' line='5454' column='1'/>
+ <function-decl name='PyUnicode_DecodeUTF32Stateful' mangled-name='PyUnicode_DecodeUTF32Stateful' filepath='Objects/unicodeobject.c' line='5477' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_DecodeUTF32Stateful'>
+ <parameter type-id='type-id-6' name='s' filepath='Objects/unicodeobject.c' line='5477' column='1'/>
+ <parameter type-id='type-id-7' name='size' filepath='Objects/unicodeobject.c' line='5478' column='1'/>
+ <parameter type-id='type-id-6' name='errors' filepath='Objects/unicodeobject.c' line='5479' column='1'/>
+ <parameter type-id='type-id-175' name='byteorder' filepath='Objects/unicodeobject.c' line='5480' column='1'/>
+ <parameter type-id='type-id-8' name='consumed' filepath='Objects/unicodeobject.c' line='5481' column='1'/>
<return type-id='type-id-4'/>
</function-decl>
- <function-decl name='_PyUnicode_EncodeUTF32' mangled-name='_PyUnicode_EncodeUTF32' filepath='Objects/unicodeobject.c' line='5595' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyUnicode_EncodeUTF32'>
- <parameter type-id='type-id-4' name='str' filepath='Objects/unicodeobject.c' line='5595' column='1'/>
- <parameter type-id='type-id-6' name='errors' filepath='Objects/unicodeobject.c' line='5596' column='1'/>
- <parameter type-id='type-id-5' name='byteorder' filepath='Objects/unicodeobject.c' line='5597' column='1'/>
+ <function-decl name='_PyUnicode_EncodeUTF32' mangled-name='_PyUnicode_EncodeUTF32' filepath='Objects/unicodeobject.c' line='5622' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyUnicode_EncodeUTF32'>
+ <parameter type-id='type-id-4' name='str' filepath='Objects/unicodeobject.c' line='5622' column='1'/>
+ <parameter type-id='type-id-6' name='errors' filepath='Objects/unicodeobject.c' line='5623' column='1'/>
+ <parameter type-id='type-id-5' name='byteorder' filepath='Objects/unicodeobject.c' line='5624' column='1'/>
<return type-id='type-id-4'/>
</function-decl>
- <function-decl name='PyUnicode_AsUTF32String' mangled-name='PyUnicode_AsUTF32String' filepath='Objects/unicodeobject.c' line='5740' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_AsUTF32String'>
- <parameter type-id='type-id-4' name='unicode' filepath='Objects/unicodeobject.c' line='5740' column='1'/>
+ <function-decl name='PyUnicode_AsUTF32String' mangled-name='PyUnicode_AsUTF32String' filepath='Objects/unicodeobject.c' line='5767' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_AsUTF32String'>
+ <parameter type-id='type-id-4' name='unicode' filepath='Objects/unicodeobject.c' line='5767' column='1'/>
<return type-id='type-id-4'/>
</function-decl>
- <function-decl name='PyUnicode_DecodeUTF16' mangled-name='PyUnicode_DecodeUTF16' filepath='Objects/unicodeobject.c' line='5748' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_DecodeUTF16'>
- <parameter type-id='type-id-6' name='s' filepath='Objects/unicodeobject.c' line='5748' column='1'/>
- <parameter type-id='type-id-7' name='size' filepath='Objects/unicodeobject.c' line='5749' column='1'/>
- <parameter type-id='type-id-6' name='errors' filepath='Objects/unicodeobject.c' line='5750' column='1'/>
- <parameter type-id='type-id-175' name='byteorder' filepath='Objects/unicodeobject.c' line='5751' column='1'/>
+ <function-decl name='PyUnicode_DecodeUTF16' mangled-name='PyUnicode_DecodeUTF16' filepath='Objects/unicodeobject.c' line='5775' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_DecodeUTF16'>
+ <parameter type-id='type-id-6' name='s' filepath='Objects/unicodeobject.c' line='5775' column='1'/>
+ <parameter type-id='type-id-7' name='size' filepath='Objects/unicodeobject.c' line='5776' column='1'/>
+ <parameter type-id='type-id-6' name='errors' filepath='Objects/unicodeobject.c' line='5777' column='1'/>
+ <parameter type-id='type-id-175' name='byteorder' filepath='Objects/unicodeobject.c' line='5778' column='1'/>
<return type-id='type-id-4'/>
</function-decl>
- <function-decl name='PyUnicode_DecodeUTF16Stateful' mangled-name='PyUnicode_DecodeUTF16Stateful' filepath='Objects/unicodeobject.c' line='5757' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_DecodeUTF16Stateful'>
- <parameter type-id='type-id-6' name='s' filepath='Objects/unicodeobject.c' line='5757' column='1'/>
- <parameter type-id='type-id-7' name='size' filepath='Objects/unicodeobject.c' line='5758' column='1'/>
- <parameter type-id='type-id-6' name='errors' filepath='Objects/unicodeobject.c' line='5759' column='1'/>
- <parameter type-id='type-id-175' name='byteorder' filepath='Objects/unicodeobject.c' line='5760' column='1'/>
- <parameter type-id='type-id-8' name='consumed' filepath='Objects/unicodeobject.c' line='5761' column='1'/>
+ <function-decl name='PyUnicode_DecodeUTF16Stateful' mangled-name='PyUnicode_DecodeUTF16Stateful' filepath='Objects/unicodeobject.c' line='5784' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_DecodeUTF16Stateful'>
+ <parameter type-id='type-id-6' name='s' filepath='Objects/unicodeobject.c' line='5784' column='1'/>
+ <parameter type-id='type-id-7' name='size' filepath='Objects/unicodeobject.c' line='5785' column='1'/>
+ <parameter type-id='type-id-6' name='errors' filepath='Objects/unicodeobject.c' line='5786' column='1'/>
+ <parameter type-id='type-id-175' name='byteorder' filepath='Objects/unicodeobject.c' line='5787' column='1'/>
+ <parameter type-id='type-id-8' name='consumed' filepath='Objects/unicodeobject.c' line='5788' column='1'/>
<return type-id='type-id-4'/>
</function-decl>
- <function-decl name='_PyUnicode_EncodeUTF16' mangled-name='_PyUnicode_EncodeUTF16' filepath='Objects/unicodeobject.c' line='5912' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyUnicode_EncodeUTF16'>
- <parameter type-id='type-id-4' name='str' filepath='Objects/unicodeobject.c' line='5912' column='1'/>
- <parameter type-id='type-id-6' name='errors' filepath='Objects/unicodeobject.c' line='5913' column='1'/>
- <parameter type-id='type-id-5' name='byteorder' filepath='Objects/unicodeobject.c' line='5914' column='1'/>
+ <function-decl name='_PyUnicode_EncodeUTF16' mangled-name='_PyUnicode_EncodeUTF16' filepath='Objects/unicodeobject.c' line='5939' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyUnicode_EncodeUTF16'>
+ <parameter type-id='type-id-4' name='str' filepath='Objects/unicodeobject.c' line='5939' column='1'/>
+ <parameter type-id='type-id-6' name='errors' filepath='Objects/unicodeobject.c' line='5940' column='1'/>
+ <parameter type-id='type-id-5' name='byteorder' filepath='Objects/unicodeobject.c' line='5941' column='1'/>
<return type-id='type-id-4'/>
</function-decl>
- <function-decl name='PyUnicode_AsUTF16String' mangled-name='PyUnicode_AsUTF16String' filepath='Objects/unicodeobject.c' line='6076' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_AsUTF16String'>
- <parameter type-id='type-id-4' name='unicode' filepath='Objects/unicodeobject.c' line='6076' column='1'/>
+ <function-decl name='PyUnicode_AsUTF16String' mangled-name='PyUnicode_AsUTF16String' filepath='Objects/unicodeobject.c' line='6103' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_AsUTF16String'>
+ <parameter type-id='type-id-4' name='unicode' filepath='Objects/unicodeobject.c' line='6103' column='1'/>
<return type-id='type-id-4'/>
</function-decl>
- <function-decl name='PyUnicode_DecodeUnicodeEscape' mangled-name='PyUnicode_DecodeUnicodeEscape' filepath='Objects/unicodeobject.c' line='6378' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_DecodeUnicodeEscape'>
- <parameter type-id='type-id-6' name='s' filepath='Objects/unicodeobject.c' line='6378' column='1'/>
- <parameter type-id='type-id-7' name='size' filepath='Objects/unicodeobject.c' line='6379' column='1'/>
- <parameter type-id='type-id-6' name='errors' filepath='Objects/unicodeobject.c' line='6380' column='1'/>
+ <function-decl name='PyUnicode_DecodeUnicodeEscape' mangled-name='PyUnicode_DecodeUnicodeEscape' filepath='Objects/unicodeobject.c' line='6405' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_DecodeUnicodeEscape'>
+ <parameter type-id='type-id-6' name='s' filepath='Objects/unicodeobject.c' line='6405' column='1'/>
+ <parameter type-id='type-id-7' name='size' filepath='Objects/unicodeobject.c' line='6406' column='1'/>
+ <parameter type-id='type-id-6' name='errors' filepath='Objects/unicodeobject.c' line='6407' column='1'/>
<return type-id='type-id-4'/>
</function-decl>
- <function-decl name='PyUnicode_AsUnicodeEscapeString' mangled-name='PyUnicode_AsUnicodeEscapeString' filepath='Objects/unicodeobject.c' line='6388' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_AsUnicodeEscapeString'>
- <parameter type-id='type-id-4' name='unicode' filepath='Objects/unicodeobject.c' line='6388' column='1'/>
+ <function-decl name='PyUnicode_AsUnicodeEscapeString' mangled-name='PyUnicode_AsUnicodeEscapeString' filepath='Objects/unicodeobject.c' line='6415' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_AsUnicodeEscapeString'>
+ <parameter type-id='type-id-4' name='unicode' filepath='Objects/unicodeobject.c' line='6415' column='1'/>
<return type-id='type-id-4'/>
</function-decl>
- <function-decl name='PyUnicode_DecodeRawUnicodeEscape' mangled-name='PyUnicode_DecodeRawUnicodeEscape' filepath='Objects/unicodeobject.c' line='6641' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_DecodeRawUnicodeEscape'>
- <parameter type-id='type-id-6' name='s' filepath='Objects/unicodeobject.c' line='6641' column='1'/>
- <parameter type-id='type-id-7' name='size' filepath='Objects/unicodeobject.c' line='6642' column='1'/>
- <parameter type-id='type-id-6' name='errors' filepath='Objects/unicodeobject.c' line='6643' column='1'/>
+ <function-decl name='PyUnicode_DecodeRawUnicodeEscape' mangled-name='PyUnicode_DecodeRawUnicodeEscape' filepath='Objects/unicodeobject.c' line='6668' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_DecodeRawUnicodeEscape'>
+ <parameter type-id='type-id-6' name='s' filepath='Objects/unicodeobject.c' line='6668' column='1'/>
+ <parameter type-id='type-id-7' name='size' filepath='Objects/unicodeobject.c' line='6669' column='1'/>
+ <parameter type-id='type-id-6' name='errors' filepath='Objects/unicodeobject.c' line='6670' column='1'/>
<return type-id='type-id-4'/>
</function-decl>
- <function-decl name='PyUnicode_AsRawUnicodeEscapeString' mangled-name='PyUnicode_AsRawUnicodeEscapeString' filepath='Objects/unicodeobject.c' line='6650' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_AsRawUnicodeEscapeString'>
- <parameter type-id='type-id-4' name='unicode' filepath='Objects/unicodeobject.c' line='6650' column='1'/>
+ <function-decl name='PyUnicode_AsRawUnicodeEscapeString' mangled-name='PyUnicode_AsRawUnicodeEscapeString' filepath='Objects/unicodeobject.c' line='6677' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_AsRawUnicodeEscapeString'>
+ <parameter type-id='type-id-4' name='unicode' filepath='Objects/unicodeobject.c' line='6677' column='1'/>
<return type-id='type-id-4'/>
</function-decl>
- <function-decl name='PyUnicode_AsLatin1String' mangled-name='PyUnicode_AsLatin1String' filepath='Objects/unicodeobject.c' line='7031' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_AsLatin1String'>
- <parameter type-id='type-id-4' name='unicode' filepath='Objects/unicodeobject.c' line='7031' column='1'/>
+ <function-decl name='PyUnicode_AsLatin1String' mangled-name='PyUnicode_AsLatin1String' filepath='Objects/unicodeobject.c' line='7058' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_AsLatin1String'>
+ <parameter type-id='type-id-4' name='unicode' filepath='Objects/unicodeobject.c' line='7058' column='1'/>
<return type-id='type-id-4'/>
</function-decl>
- <function-decl name='PyUnicode_DecodeCharmap' mangled-name='PyUnicode_DecodeCharmap' filepath='Objects/unicodeobject.c' line='8080' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_DecodeCharmap'>
- <parameter type-id='type-id-6' name='s' filepath='Objects/unicodeobject.c' line='8080' column='1'/>
- <parameter type-id='type-id-7' name='size' filepath='Objects/unicodeobject.c' line='8081' column='1'/>
- <parameter type-id='type-id-4' name='mapping' filepath='Objects/unicodeobject.c' line='8082' column='1'/>
- <parameter type-id='type-id-6' name='errors' filepath='Objects/unicodeobject.c' line='8083' column='1'/>
+ <function-decl name='PyUnicode_DecodeCharmap' mangled-name='PyUnicode_DecodeCharmap' filepath='Objects/unicodeobject.c' line='8107' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_DecodeCharmap'>
+ <parameter type-id='type-id-6' name='s' filepath='Objects/unicodeobject.c' line='8107' column='1'/>
+ <parameter type-id='type-id-7' name='size' filepath='Objects/unicodeobject.c' line='8108' column='1'/>
+ <parameter type-id='type-id-4' name='mapping' filepath='Objects/unicodeobject.c' line='8109' column='1'/>
+ <parameter type-id='type-id-6' name='errors' filepath='Objects/unicodeobject.c' line='8110' column='1'/>
<return type-id='type-id-4'/>
</function-decl>
- <function-decl name='PyUnicode_BuildEncodingMap' mangled-name='PyUnicode_BuildEncodingMap' filepath='Objects/unicodeobject.c' line='8156' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_BuildEncodingMap'>
- <parameter type-id='type-id-4' name='string' filepath='Objects/unicodeobject.c' line='8156' column='1'/>
+ <function-decl name='PyUnicode_BuildEncodingMap' mangled-name='PyUnicode_BuildEncodingMap' filepath='Objects/unicodeobject.c' line='8183' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_BuildEncodingMap'>
+ <parameter type-id='type-id-4' name='string' filepath='Objects/unicodeobject.c' line='8183' column='1'/>
<return type-id='type-id-4'/>
</function-decl>
- <function-decl name='PyUnicode_AsCharmapString' mangled-name='PyUnicode_AsCharmapString' filepath='Objects/unicodeobject.c' line='8637' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_AsCharmapString'>
- <parameter type-id='type-id-4' name='unicode' filepath='Objects/unicodeobject.c' line='8637' column='1'/>
- <parameter type-id='type-id-4' name='mapping' filepath='Objects/unicodeobject.c' line='8638' column='1'/>
+ <function-decl name='PyUnicode_AsCharmapString' mangled-name='PyUnicode_AsCharmapString' filepath='Objects/unicodeobject.c' line='8664' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_AsCharmapString'>
+ <parameter type-id='type-id-4' name='unicode' filepath='Objects/unicodeobject.c' line='8664' column='1'/>
+ <parameter type-id='type-id-4' name='mapping' filepath='Objects/unicodeobject.c' line='8665' column='1'/>
<return type-id='type-id-4'/>
</function-decl>
- <function-decl name='PyUnicode_Translate' mangled-name='PyUnicode_Translate' filepath='Objects/unicodeobject.c' line='9053' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_Translate'>
- <parameter type-id='type-id-4' name='str' filepath='Objects/unicodeobject.c' line='9053' column='1'/>
- <parameter type-id='type-id-4' name='mapping' filepath='Objects/unicodeobject.c' line='9054' column='1'/>
- <parameter type-id='type-id-6' name='errors' filepath='Objects/unicodeobject.c' line='9055' column='1'/>
+ <function-decl name='PyUnicode_Translate' mangled-name='PyUnicode_Translate' filepath='Objects/unicodeobject.c' line='9080' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_Translate'>
+ <parameter type-id='type-id-4' name='str' filepath='Objects/unicodeobject.c' line='9080' column='1'/>
+ <parameter type-id='type-id-4' name='mapping' filepath='Objects/unicodeobject.c' line='9081' column='1'/>
+ <parameter type-id='type-id-6' name='errors' filepath='Objects/unicodeobject.c' line='9082' column='1'/>
<return type-id='type-id-4'/>
</function-decl>
- <function-decl name='PyUnicode_Count' mangled-name='PyUnicode_Count' filepath='Objects/unicodeobject.c' line='9345' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_Count'>
- <parameter type-id='type-id-4' name='str' filepath='Objects/unicodeobject.c' line='9345' column='1'/>
- <parameter type-id='type-id-4' name='substr' filepath='Objects/unicodeobject.c' line='9346' column='1'/>
- <parameter type-id='type-id-7' name='start' filepath='Objects/unicodeobject.c' line='9347' column='1'/>
- <parameter type-id='type-id-7' name='end' filepath='Objects/unicodeobject.c' line='9348' column='1'/>
+ <function-decl name='PyUnicode_Count' mangled-name='PyUnicode_Count' filepath='Objects/unicodeobject.c' line='9372' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_Count'>
+ <parameter type-id='type-id-4' name='str' filepath='Objects/unicodeobject.c' line='9372' column='1'/>
+ <parameter type-id='type-id-4' name='substr' filepath='Objects/unicodeobject.c' line='9373' column='1'/>
+ <parameter type-id='type-id-7' name='start' filepath='Objects/unicodeobject.c' line='9374' column='1'/>
+ <parameter type-id='type-id-7' name='end' filepath='Objects/unicodeobject.c' line='9375' column='1'/>
<return type-id='type-id-7'/>
</function-decl>
- <function-decl name='PyUnicode_Find' mangled-name='PyUnicode_Find' filepath='Objects/unicodeobject.c' line='9357' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_Find'>
- <parameter type-id='type-id-4' name='str' filepath='Objects/unicodeobject.c' line='9357' column='1'/>
- <parameter type-id='type-id-4' name='substr' filepath='Objects/unicodeobject.c' line='9358' column='1'/>
- <parameter type-id='type-id-7' name='start' filepath='Objects/unicodeobject.c' line='9359' column='1'/>
- <parameter type-id='type-id-7' name='end' filepath='Objects/unicodeobject.c' line='9360' column='1'/>
- <parameter type-id='type-id-5' name='direction' filepath='Objects/unicodeobject.c' line='9361' column='1'/>
+ <function-decl name='PyUnicode_Find' mangled-name='PyUnicode_Find' filepath='Objects/unicodeobject.c' line='9384' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_Find'>
+ <parameter type-id='type-id-4' name='str' filepath='Objects/unicodeobject.c' line='9384' column='1'/>
+ <parameter type-id='type-id-4' name='substr' filepath='Objects/unicodeobject.c' line='9385' column='1'/>
+ <parameter type-id='type-id-7' name='start' filepath='Objects/unicodeobject.c' line='9386' column='1'/>
+ <parameter type-id='type-id-7' name='end' filepath='Objects/unicodeobject.c' line='9387' column='1'/>
+ <parameter type-id='type-id-5' name='direction' filepath='Objects/unicodeobject.c' line='9388' column='1'/>
<return type-id='type-id-7'/>
</function-decl>
- <function-decl name='PyUnicode_FindChar' mangled-name='PyUnicode_FindChar' filepath='Objects/unicodeobject.c' line='9370' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_FindChar'>
- <parameter type-id='type-id-4' name='str' filepath='Objects/unicodeobject.c' line='9370' column='1'/>
- <parameter type-id='type-id-257' name='ch' filepath='Objects/unicodeobject.c' line='9370' column='1'/>
- <parameter type-id='type-id-7' name='start' filepath='Objects/unicodeobject.c' line='9371' column='1'/>
- <parameter type-id='type-id-7' name='end' filepath='Objects/unicodeobject.c' line='9371' column='1'/>
- <parameter type-id='type-id-5' name='direction' filepath='Objects/unicodeobject.c' line='9372' column='1'/>
+ <function-decl name='PyUnicode_FindChar' mangled-name='PyUnicode_FindChar' filepath='Objects/unicodeobject.c' line='9397' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_FindChar'>
+ <parameter type-id='type-id-4' name='str' filepath='Objects/unicodeobject.c' line='9397' column='1'/>
+ <parameter type-id='type-id-257' name='ch' filepath='Objects/unicodeobject.c' line='9397' column='1'/>
+ <parameter type-id='type-id-7' name='start' filepath='Objects/unicodeobject.c' line='9398' column='1'/>
+ <parameter type-id='type-id-7' name='end' filepath='Objects/unicodeobject.c' line='9398' column='1'/>
+ <parameter type-id='type-id-5' name='direction' filepath='Objects/unicodeobject.c' line='9399' column='1'/>
<return type-id='type-id-7'/>
</function-decl>
- <function-decl name='PyUnicode_Tailmatch' mangled-name='PyUnicode_Tailmatch' filepath='Objects/unicodeobject.c' line='9453' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_Tailmatch'>
- <parameter type-id='type-id-4' name='str' filepath='Objects/unicodeobject.c' line='9453' column='1'/>
- <parameter type-id='type-id-4' name='substr' filepath='Objects/unicodeobject.c' line='9454' column='1'/>
- <parameter type-id='type-id-7' name='start' filepath='Objects/unicodeobject.c' line='9455' column='1'/>
- <parameter type-id='type-id-7' name='end' filepath='Objects/unicodeobject.c' line='9456' column='1'/>
- <parameter type-id='type-id-5' name='direction' filepath='Objects/unicodeobject.c' line='9457' column='1'/>
+ <function-decl name='PyUnicode_Tailmatch' mangled-name='PyUnicode_Tailmatch' filepath='Objects/unicodeobject.c' line='9480' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_Tailmatch'>
+ <parameter type-id='type-id-4' name='str' filepath='Objects/unicodeobject.c' line='9480' column='1'/>
+ <parameter type-id='type-id-4' name='substr' filepath='Objects/unicodeobject.c' line='9481' column='1'/>
+ <parameter type-id='type-id-7' name='start' filepath='Objects/unicodeobject.c' line='9482' column='1'/>
+ <parameter type-id='type-id-7' name='end' filepath='Objects/unicodeobject.c' line='9483' column='1'/>
+ <parameter type-id='type-id-5' name='direction' filepath='Objects/unicodeobject.c' line='9484' column='1'/>
<return type-id='type-id-7'/>
</function-decl>
- <function-decl name='_PyUnicode_JoinArray' mangled-name='_PyUnicode_JoinArray' filepath='Objects/unicodeobject.c' line='9723' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyUnicode_JoinArray'>
- <parameter type-id='type-id-4' name='separator' filepath='Objects/unicodeobject.c' line='9723' column='1'/>
- <parameter type-id='type-id-256' name='items' filepath='Objects/unicodeobject.c' line='9723' column='1'/>
- <parameter type-id='type-id-7' name='seqlen' filepath='Objects/unicodeobject.c' line='9723' column='1'/>
+ <function-decl name='_PyUnicode_JoinArray' mangled-name='_PyUnicode_JoinArray' filepath='Objects/unicodeobject.c' line='9750' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyUnicode_JoinArray'>
+ <parameter type-id='type-id-4' name='separator' filepath='Objects/unicodeobject.c' line='9750' column='1'/>
+ <parameter type-id='type-id-256' name='items' filepath='Objects/unicodeobject.c' line='9750' column='1'/>
+ <parameter type-id='type-id-7' name='seqlen' filepath='Objects/unicodeobject.c' line='9750' column='1'/>
<return type-id='type-id-4'/>
</function-decl>
- <function-decl name='PyUnicode_Fill' mangled-name='PyUnicode_Fill' filepath='Objects/unicodeobject.c' line='9903' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_Fill'>
- <parameter type-id='type-id-4' name='unicode' filepath='Objects/unicodeobject.c' line='9903' column='1'/>
- <parameter type-id='type-id-7' name='start' filepath='Objects/unicodeobject.c' line='9903' column='1'/>
- <parameter type-id='type-id-7' name='length' filepath='Objects/unicodeobject.c' line='9903' column='1'/>
- <parameter type-id='type-id-257' name='fill_char' filepath='Objects/unicodeobject.c' line='9904' column='1'/>
+ <function-decl name='PyUnicode_Fill' mangled-name='PyUnicode_Fill' filepath='Objects/unicodeobject.c' line='9930' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_Fill'>
+ <parameter type-id='type-id-4' name='unicode' filepath='Objects/unicodeobject.c' line='9930' column='1'/>
+ <parameter type-id='type-id-7' name='start' filepath='Objects/unicodeobject.c' line='9930' column='1'/>
+ <parameter type-id='type-id-7' name='length' filepath='Objects/unicodeobject.c' line='9930' column='1'/>
+ <parameter type-id='type-id-257' name='fill_char' filepath='Objects/unicodeobject.c' line='9931' column='1'/>
<return type-id='type-id-7'/>
</function-decl>
- <function-decl name='PyUnicode_Splitlines' mangled-name='PyUnicode_Splitlines' filepath='Objects/unicodeobject.c' line='9977' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_Splitlines'>
- <parameter type-id='type-id-4' name='string' filepath='Objects/unicodeobject.c' line='9977' column='1'/>
- <parameter type-id='type-id-5' name='keepends' filepath='Objects/unicodeobject.c' line='9977' column='1'/>
+ <function-decl name='PyUnicode_Splitlines' mangled-name='PyUnicode_Splitlines' filepath='Objects/unicodeobject.c' line='10004' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_Splitlines'>
+ <parameter type-id='type-id-4' name='string' filepath='Objects/unicodeobject.c' line='10004' column='1'/>
+ <parameter type-id='type-id-5' name='keepends' filepath='Objects/unicodeobject.c' line='10004' column='1'/>
<return type-id='type-id-4'/>
</function-decl>
- <function-decl name='PyUnicode_EqualToUTF8' mangled-name='PyUnicode_EqualToUTF8' filepath='Objects/unicodeobject.c' line='10847' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_EqualToUTF8'>
- <parameter type-id='type-id-4' name='unicode' filepath='Objects/unicodeobject.c' line='10847' column='1'/>
- <parameter type-id='type-id-6' name='str' filepath='Objects/unicodeobject.c' line='10847' column='1'/>
+ <function-decl name='PyUnicode_EqualToUTF8' mangled-name='PyUnicode_EqualToUTF8' filepath='Objects/unicodeobject.c' line='10874' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_EqualToUTF8'>
+ <parameter type-id='type-id-4' name='unicode' filepath='Objects/unicodeobject.c' line='10874' column='1'/>
+ <parameter type-id='type-id-6' name='str' filepath='Objects/unicodeobject.c' line='10874' column='1'/>
<return type-id='type-id-5'/>
</function-decl>
- <function-decl name='PyUnicode_EqualToUTF8AndSize' mangled-name='PyUnicode_EqualToUTF8AndSize' filepath='Objects/unicodeobject.c' line='10853' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_EqualToUTF8AndSize'>
- <parameter type-id='type-id-4' name='unicode' filepath='Objects/unicodeobject.c' line='10853' column='1'/>
- <parameter type-id='type-id-6' name='str' filepath='Objects/unicodeobject.c' line='10853' column='1'/>
- <parameter type-id='type-id-7' name='size' filepath='Objects/unicodeobject.c' line='10853' column='1'/>
+ <function-decl name='PyUnicode_EqualToUTF8AndSize' mangled-name='PyUnicode_EqualToUTF8AndSize' filepath='Objects/unicodeobject.c' line='10880' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_EqualToUTF8AndSize'>
+ <parameter type-id='type-id-4' name='unicode' filepath='Objects/unicodeobject.c' line='10880' column='1'/>
+ <parameter type-id='type-id-6' name='str' filepath='Objects/unicodeobject.c' line='10880' column='1'/>
+ <parameter type-id='type-id-7' name='size' filepath='Objects/unicodeobject.c' line='10880' column='1'/>
<return type-id='type-id-5'/>
</function-decl>
- <function-decl name='PyUnicode_RichCompare' mangled-name='PyUnicode_RichCompare' filepath='Objects/unicodeobject.c' line='10982' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_RichCompare'>
- <parameter type-id='type-id-4' name='left' filepath='Objects/unicodeobject.c' line='10982' column='1'/>
- <parameter type-id='type-id-4' name='right' filepath='Objects/unicodeobject.c' line='10982' column='1'/>
- <parameter type-id='type-id-5' name='op' filepath='Objects/unicodeobject.c' line='10982' column='1'/>
+ <function-decl name='PyUnicode_RichCompare' mangled-name='PyUnicode_RichCompare' filepath='Objects/unicodeobject.c' line='11009' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_RichCompare'>
+ <parameter type-id='type-id-4' name='left' filepath='Objects/unicodeobject.c' line='11009' column='1'/>
+ <parameter type-id='type-id-4' name='right' filepath='Objects/unicodeobject.c' line='11009' column='1'/>
+ <parameter type-id='type-id-5' name='op' filepath='Objects/unicodeobject.c' line='11009' column='1'/>
<return type-id='type-id-4'/>
</function-decl>
- <function-decl name='PyUnicode_Contains' mangled-name='PyUnicode_Contains' filepath='Objects/unicodeobject.c' line='11023' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_Contains'>
- <parameter type-id='type-id-4' name='str' filepath='Objects/unicodeobject.c' line='11023' column='1'/>
- <parameter type-id='type-id-4' name='substr' filepath='Objects/unicodeobject.c' line='11023' column='1'/>
+ <function-decl name='PyUnicode_Contains' mangled-name='PyUnicode_Contains' filepath='Objects/unicodeobject.c' line='11050' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_Contains'>
+ <parameter type-id='type-id-4' name='str' filepath='Objects/unicodeobject.c' line='11050' column='1'/>
+ <parameter type-id='type-id-4' name='substr' filepath='Objects/unicodeobject.c' line='11050' column='1'/>
<return type-id='type-id-5'/>
</function-decl>
- <function-decl name='PyUnicode_Concat' mangled-name='PyUnicode_Concat' filepath='Objects/unicodeobject.c' line='11084' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_Concat'>
- <parameter type-id='type-id-4' name='left' filepath='Objects/unicodeobject.c' line='11084' column='1'/>
- <parameter type-id='type-id-4' name='right' filepath='Objects/unicodeobject.c' line='11084' column='1'/>
+ <function-decl name='PyUnicode_Concat' mangled-name='PyUnicode_Concat' filepath='Objects/unicodeobject.c' line='11111' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_Concat'>
+ <parameter type-id='type-id-4' name='left' filepath='Objects/unicodeobject.c' line='11111' column='1'/>
+ <parameter type-id='type-id-4' name='right' filepath='Objects/unicodeobject.c' line='11111' column='1'/>
<return type-id='type-id-4'/>
</function-decl>
- <function-decl name='PyUnicode_Append' mangled-name='PyUnicode_Append' filepath='Objects/unicodeobject.c' line='11133' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_Append'>
- <parameter type-id='type-id-236' name='p_left' filepath='Objects/unicodeobject.c' line='11133' column='1'/>
- <parameter type-id='type-id-4' name='right' filepath='Objects/unicodeobject.c' line='11133' column='1'/>
+ <function-decl name='PyUnicode_Append' mangled-name='PyUnicode_Append' filepath='Objects/unicodeobject.c' line='11160' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_Append'>
+ <parameter type-id='type-id-236' name='p_left' filepath='Objects/unicodeobject.c' line='11160' column='1'/>
+ <parameter type-id='type-id-4' name='right' filepath='Objects/unicodeobject.c' line='11160' column='1'/>
<return type-id='type-id-3'/>
</function-decl>
- <function-decl name='PyUnicode_AppendAndDel' mangled-name='PyUnicode_AppendAndDel' filepath='Objects/unicodeobject.c' line='11210' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_AppendAndDel'>
- <parameter type-id='type-id-236' name='pleft' filepath='Objects/unicodeobject.c' line='11210' column='1'/>
- <parameter type-id='type-id-4' name='right' filepath='Objects/unicodeobject.c' line='11210' column='1'/>
+ <function-decl name='PyUnicode_AppendAndDel' mangled-name='PyUnicode_AppendAndDel' filepath='Objects/unicodeobject.c' line='11237' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_AppendAndDel'>
+ <parameter type-id='type-id-236' name='pleft' filepath='Objects/unicodeobject.c' line='11237' column='1'/>
+ <parameter type-id='type-id-4' name='right' filepath='Objects/unicodeobject.c' line='11237' column='1'/>
<return type-id='type-id-3'/>
</function-decl>
- <function-decl name='PyUnicode_Replace' mangled-name='PyUnicode_Replace' filepath='Objects/unicodeobject.c' line='12319' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_Replace'>
- <parameter type-id='type-id-4' name='str' filepath='Objects/unicodeobject.c' line='12319' column='1'/>
- <parameter type-id='type-id-4' name='substr' filepath='Objects/unicodeobject.c' line='12320' column='1'/>
- <parameter type-id='type-id-4' name='replstr' filepath='Objects/unicodeobject.c' line='12321' column='1'/>
- <parameter type-id='type-id-7' name='maxcount' filepath='Objects/unicodeobject.c' line='12322' column='1'/>
+ <function-decl name='PyUnicode_Replace' mangled-name='PyUnicode_Replace' filepath='Objects/unicodeobject.c' line='12346' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_Replace'>
+ <parameter type-id='type-id-4' name='str' filepath='Objects/unicodeobject.c' line='12346' column='1'/>
+ <parameter type-id='type-id-4' name='substr' filepath='Objects/unicodeobject.c' line='12347' column='1'/>
+ <parameter type-id='type-id-4' name='replstr' filepath='Objects/unicodeobject.c' line='12348' column='1'/>
+ <parameter type-id='type-id-7' name='maxcount' filepath='Objects/unicodeobject.c' line='12349' column='1'/>
<return type-id='type-id-4'/>
</function-decl>
- <function-decl name='PyUnicode_Split' mangled-name='PyUnicode_Split' filepath='Objects/unicodeobject.c' line='12639' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_Split'>
- <parameter type-id='type-id-4' name='s' filepath='Objects/unicodeobject.c' line='12639' column='1'/>
- <parameter type-id='type-id-4' name='sep' filepath='Objects/unicodeobject.c' line='12639' column='1'/>
- <parameter type-id='type-id-7' name='maxsplit' filepath='Objects/unicodeobject.c' line='12639' column='1'/>
+ <function-decl name='PyUnicode_Split' mangled-name='PyUnicode_Split' filepath='Objects/unicodeobject.c' line='12666' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_Split'>
+ <parameter type-id='type-id-4' name='s' filepath='Objects/unicodeobject.c' line='12666' column='1'/>
+ <parameter type-id='type-id-4' name='sep' filepath='Objects/unicodeobject.c' line='12666' column='1'/>
+ <parameter type-id='type-id-7' name='maxsplit' filepath='Objects/unicodeobject.c' line='12666' column='1'/>
<return type-id='type-id-4'/>
</function-decl>
- <function-decl name='PyUnicode_Partition' mangled-name='PyUnicode_Partition' filepath='Objects/unicodeobject.c' line='12686' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_Partition'>
- <parameter type-id='type-id-4' name='str_obj' filepath='Objects/unicodeobject.c' line='12686' column='1'/>
- <parameter type-id='type-id-4' name='sep_obj' filepath='Objects/unicodeobject.c' line='12686' column='1'/>
+ <function-decl name='PyUnicode_Partition' mangled-name='PyUnicode_Partition' filepath='Objects/unicodeobject.c' line='12713' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_Partition'>
+ <parameter type-id='type-id-4' name='str_obj' filepath='Objects/unicodeobject.c' line='12713' column='1'/>
+ <parameter type-id='type-id-4' name='sep_obj' filepath='Objects/unicodeobject.c' line='12713' column='1'/>
<return type-id='type-id-4'/>
</function-decl>
- <function-decl name='PyUnicode_RPartition' mangled-name='PyUnicode_RPartition' filepath='Objects/unicodeobject.c' line='12738' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_RPartition'>
- <parameter type-id='type-id-4' name='str_obj' filepath='Objects/unicodeobject.c' line='12738' column='1'/>
- <parameter type-id='type-id-4' name='sep_obj' filepath='Objects/unicodeobject.c' line='12738' column='1'/>
+ <function-decl name='PyUnicode_RPartition' mangled-name='PyUnicode_RPartition' filepath='Objects/unicodeobject.c' line='12765' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_RPartition'>
+ <parameter type-id='type-id-4' name='str_obj' filepath='Objects/unicodeobject.c' line='12765' column='1'/>
+ <parameter type-id='type-id-4' name='sep_obj' filepath='Objects/unicodeobject.c' line='12765' column='1'/>
<return type-id='type-id-4'/>
</function-decl>
- <function-decl name='PyUnicode_RSplit' mangled-name='PyUnicode_RSplit' filepath='Objects/unicodeobject.c' line='12832' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_RSplit'>
- <parameter type-id='type-id-4' name='s' filepath='Objects/unicodeobject.c' line='12832' column='1'/>
- <parameter type-id='type-id-4' name='sep' filepath='Objects/unicodeobject.c' line='12832' column='1'/>
- <parameter type-id='type-id-7' name='maxsplit' filepath='Objects/unicodeobject.c' line='12832' column='1'/>
+ <function-decl name='PyUnicode_RSplit' mangled-name='PyUnicode_RSplit' filepath='Objects/unicodeobject.c' line='12859' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_RSplit'>
+ <parameter type-id='type-id-4' name='s' filepath='Objects/unicodeobject.c' line='12859' column='1'/>
+ <parameter type-id='type-id-4' name='sep' filepath='Objects/unicodeobject.c' line='12859' column='1'/>
+ <parameter type-id='type-id-7' name='maxsplit' filepath='Objects/unicodeobject.c' line='12859' column='1'/>
<return type-id='type-id-4'/>
</function-decl>
- <function-decl name='_PyUnicodeWriter_PrepareKindInternal' mangled-name='_PyUnicodeWriter_PrepareKindInternal' filepath='Objects/unicodeobject.c' line='13347' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyUnicodeWriter_PrepareKindInternal'>
- <parameter type-id='type-id-328' name='writer' filepath='Objects/unicodeobject.c' line='13347' column='1'/>
- <parameter type-id='type-id-5' name='kind' filepath='Objects/unicodeobject.c' line='13348' column='1'/>
+ <function-decl name='_PyUnicodeWriter_PrepareKindInternal' mangled-name='_PyUnicodeWriter_PrepareKindInternal' filepath='Objects/unicodeobject.c' line='13374' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyUnicodeWriter_PrepareKindInternal'>
+ <parameter type-id='type-id-328' name='writer' filepath='Objects/unicodeobject.c' line='13374' column='1'/>
+ <parameter type-id='type-id-5' name='kind' filepath='Objects/unicodeobject.c' line='13375' column='1'/>
<return type-id='type-id-5'/>
</function-decl>
- <function-decl name='_PyUnicodeWriter_WriteSubstring' mangled-name='_PyUnicodeWriter_WriteSubstring' filepath='Objects/unicodeobject.c' line='13413' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyUnicodeWriter_WriteSubstring'>
- <parameter type-id='type-id-328' name='writer' filepath='Objects/unicodeobject.c' line='13413' column='1'/>
- <parameter type-id='type-id-4' name='str' filepath='Objects/unicodeobject.c' line='13413' column='1'/>
- <parameter type-id='type-id-7' name='start' filepath='Objects/unicodeobject.c' line='13414' column='1'/>
- <parameter type-id='type-id-7' name='end' filepath='Objects/unicodeobject.c' line='13414' column='1'/>
+ <function-decl name='_PyUnicodeWriter_WriteSubstring' mangled-name='_PyUnicodeWriter_WriteSubstring' filepath='Objects/unicodeobject.c' line='13440' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyUnicodeWriter_WriteSubstring'>
+ <parameter type-id='type-id-328' name='writer' filepath='Objects/unicodeobject.c' line='13440' column='1'/>
+ <parameter type-id='type-id-4' name='str' filepath='Objects/unicodeobject.c' line='13440' column='1'/>
+ <parameter type-id='type-id-7' name='start' filepath='Objects/unicodeobject.c' line='13441' column='1'/>
+ <parameter type-id='type-id-7' name='end' filepath='Objects/unicodeobject.c' line='13441' column='1'/>
<return type-id='type-id-5'/>
</function-decl>
- <function-decl name='_PyUnicodeWriter_WriteLatin1String' mangled-name='_PyUnicodeWriter_WriteLatin1String' filepath='Objects/unicodeobject.c' line='13505' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyUnicodeWriter_WriteLatin1String'>
- <parameter type-id='type-id-328' name='writer' filepath='Objects/unicodeobject.c' line='13505' column='1'/>
- <parameter type-id='type-id-6' name='str' filepath='Objects/unicodeobject.c' line='13506' column='1'/>
- <parameter type-id='type-id-7' name='len' filepath='Objects/unicodeobject.c' line='13506' column='1'/>
+ <function-decl name='_PyUnicodeWriter_WriteLatin1String' mangled-name='_PyUnicodeWriter_WriteLatin1String' filepath='Objects/unicodeobject.c' line='13532' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyUnicodeWriter_WriteLatin1String'>
+ <parameter type-id='type-id-328' name='writer' filepath='Objects/unicodeobject.c' line='13532' column='1'/>
+ <parameter type-id='type-id-6' name='str' filepath='Objects/unicodeobject.c' line='13533' column='1'/>
+ <parameter type-id='type-id-7' name='len' filepath='Objects/unicodeobject.c' line='13533' column='1'/>
<return type-id='type-id-5'/>
</function-decl>
- <function-decl name='PyUnicode_Format' mangled-name='PyUnicode_Format' filepath='Objects/unicodeobject.c' line='14657' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_Format'>
- <parameter type-id='type-id-4' name='format' filepath='Objects/unicodeobject.c' line='14657' column='1'/>
- <parameter type-id='type-id-4' name='args' filepath='Objects/unicodeobject.c' line='14657' column='1'/>
+ <function-decl name='PyUnicode_Format' mangled-name='PyUnicode_Format' filepath='Objects/unicodeobject.c' line='14684' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_Format'>
+ <parameter type-id='type-id-4' name='format' filepath='Objects/unicodeobject.c' line='14684' column='1'/>
+ <parameter type-id='type-id-4' name='args' filepath='Objects/unicodeobject.c' line='14684' column='1'/>
<return type-id='type-id-4'/>
</function-decl>
- <function-decl name='_PyUnicode_ExactDealloc' mangled-name='_PyUnicode_ExactDealloc' filepath='Objects/unicodeobject.c' line='14911' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyUnicode_ExactDealloc'>
- <parameter type-id='type-id-4' name='op' filepath='Objects/unicodeobject.c' line='14911' column='1'/>
+ <function-decl name='_PyUnicode_ExactDealloc' mangled-name='_PyUnicode_ExactDealloc' filepath='Objects/unicodeobject.c' line='14938' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyUnicode_ExactDealloc'>
+ <parameter type-id='type-id-4' name='op' filepath='Objects/unicodeobject.c' line='14938' column='1'/>
<return type-id='type-id-3'/>
</function-decl>
- <function-decl name='_PyUnicode_InternInPlace' mangled-name='_PyUnicode_InternInPlace' filepath='Objects/unicodeobject.c' line='15265' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyUnicode_InternInPlace'>
- <parameter type-id='type-id-27' name='interp' filepath='Objects/unicodeobject.c' line='15265' column='1'/>
- <parameter type-id='type-id-236' name='p' filepath='Objects/unicodeobject.c' line='15265' column='1'/>
+ <function-decl name='_PyUnicode_InternInPlace' mangled-name='_PyUnicode_InternInPlace' filepath='Objects/unicodeobject.c' line='15292' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyUnicode_InternInPlace'>
+ <parameter type-id='type-id-27' name='interp' filepath='Objects/unicodeobject.c' line='15292' column='1'/>
+ <parameter type-id='type-id-236' name='p' filepath='Objects/unicodeobject.c' line='15292' column='1'/>
<return type-id='type-id-3'/>
</function-decl>
- <function-decl name='PyUnicode_InternInPlace' mangled-name='PyUnicode_InternInPlace' filepath='Objects/unicodeobject.c' line='15272' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_InternInPlace'>
- <parameter type-id='type-id-236' name='p' filepath='Objects/unicodeobject.c' line='15272' column='1'/>
+ <function-decl name='PyUnicode_InternInPlace' mangled-name='PyUnicode_InternInPlace' filepath='Objects/unicodeobject.c' line='15299' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_InternInPlace'>
+ <parameter type-id='type-id-236' name='p' filepath='Objects/unicodeobject.c' line='15299' column='1'/>
<return type-id='type-id-3'/>
</function-decl>
- <function-decl name='PyUnicode_InternImmortal' mangled-name='PyUnicode_InternImmortal' filepath='Objects/unicodeobject.c' line='15281' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_InternImmortal'>
- <parameter type-id='type-id-236' name='p' filepath='Objects/unicodeobject.c' line='15281' column='1'/>
+ <function-decl name='PyUnicode_InternImmortal' mangled-name='PyUnicode_InternImmortal' filepath='Objects/unicodeobject.c' line='15308' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_InternImmortal'>
+ <parameter type-id='type-id-236' name='p' filepath='Objects/unicodeobject.c' line='15308' column='1'/>
<return type-id='type-id-3'/>
</function-decl>
- <function-decl name='PyInit__string' mangled-name='PyInit__string' filepath='Objects/unicodeobject.c' line='15869' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyInit__string'>
+ <function-decl name='PyInit__string' mangled-name='PyInit__string' filepath='Objects/unicodeobject.c' line='15905' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyInit__string'>
<return type-id='type-id-4'/>
</function-decl>
- <enum-decl name='__anonymous_enum__' is-anonymous='yes' filepath='./Include/cpython/initconfig.h' line='11' column='1' id='type-id-536'>
+ <enum-decl name='__anonymous_enum__' is-anonymous='yes' filepath='./Include/cpython/initconfig.h' line='11' column='1' id='type-id-535'>
<underlying-type type-id='type-id-31'/>
<enumerator name='_PyStatus_TYPE_OK' value='0'/>
<enumerator name='_PyStatus_TYPE_ERROR' value='1'/>
<enumerator name='_PyStatus_TYPE_EXIT' value='2'/>
</enum-decl>
</abi-instr>
- <abi-instr address-size='64' path='Objects/unionobject.c' comp-dir-path='/src' language='LANG_C11'>
+ <abi-instr address-size='64' path='Objects/unionobject.c' comp-dir-path='/home/runner/work/cpython/cpython' language='LANG_C11'>
<var-decl name='_PyUnion_Type' type-id='type-id-264' mangled-name='_PyUnion_Type' visibility='default' filepath='./Include/internal/pycore_unionobject.h' line='12' column='1' elf-symbol-id='_PyUnion_Type'/>
<function-decl name='_Py_subs_parameters' filepath='./Include/internal/pycore_unionobject.h' line='18' column='1' visibility='default' binding='global' size-in-bits='64'>
<parameter type-id='type-id-4'/>
@@ -10684,8 +10675,8 @@
<return type-id='type-id-4'/>
</function-decl>
</abi-instr>
- <abi-instr address-size='64' path='Objects/weakrefobject.c' comp-dir-path='/src' language='LANG_C11'>
- <class-decl name='_PyWeakReference' size-in-bits='512' is-struct='yes' visibility='default' filepath='./Include/cpython/weakrefobject.h' line='8' column='1' id='type-id-549'>
+ <abi-instr address-size='64' path='Objects/weakrefobject.c' comp-dir-path='/home/runner/work/cpython/cpython' language='LANG_C11'>
+ <class-decl name='_PyWeakReference' size-in-bits='512' is-struct='yes' visibility='default' filepath='./Include/cpython/weakrefobject.h' line='8' column='1' id='type-id-548'>
<data-member access='public' layout-offset-in-bits='0'>
<var-decl name='ob_base' type-id='type-id-355' visibility='default' filepath='./Include/cpython/weakrefobject.h' line='9' column='1'/>
</data-member>
@@ -10699,22 +10690,22 @@
<var-decl name='hash' type-id='type-id-299' visibility='default' filepath='./Include/cpython/weakrefobject.h' line='23' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='320'>
- <var-decl name='wr_prev' type-id='type-id-550' visibility='default' filepath='./Include/cpython/weakrefobject.h' line='30' column='1'/>
+ <var-decl name='wr_prev' type-id='type-id-549' visibility='default' filepath='./Include/cpython/weakrefobject.h' line='30' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='384'>
- <var-decl name='wr_next' type-id='type-id-550' visibility='default' filepath='./Include/cpython/weakrefobject.h' line='31' column='1'/>
+ <var-decl name='wr_next' type-id='type-id-549' visibility='default' filepath='./Include/cpython/weakrefobject.h' line='31' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='448'>
<var-decl name='vectorcall' type-id='type-id-307' visibility='default' filepath='./Include/cpython/weakrefobject.h' line='32' column='1'/>
</data-member>
</class-decl>
- <typedef-decl name='PyWeakReference' type-id='type-id-549' filepath='./Include/weakrefobject.h' line='9' column='1' id='type-id-551'/>
- <pointer-type-def type-id='type-id-551' size-in-bits='64' id='type-id-550'/>
+ <typedef-decl name='PyWeakReference' type-id='type-id-548' filepath='./Include/weakrefobject.h' line='9' column='1' id='type-id-550'/>
+ <pointer-type-def type-id='type-id-550' size-in-bits='64' id='type-id-549'/>
<var-decl name='_PyWeakref_RefType' type-id='type-id-264' mangled-name='_PyWeakref_RefType' visibility='default' filepath='./Include/weakrefobject.h' line='11' column='1' elf-symbol-id='_PyWeakref_RefType'/>
<var-decl name='_PyWeakref_ProxyType' type-id='type-id-264' mangled-name='_PyWeakref_ProxyType' visibility='default' filepath='./Include/weakrefobject.h' line='12' column='1' elf-symbol-id='_PyWeakref_ProxyType'/>
<var-decl name='_PyWeakref_CallableProxyType' type-id='type-id-264' mangled-name='_PyWeakref_CallableProxyType' visibility='default' filepath='./Include/weakrefobject.h' line='13' column='1' elf-symbol-id='_PyWeakref_CallableProxyType'/>
<function-decl name='_PyWeakref_ClearRef' mangled-name='_PyWeakref_ClearRef' filepath='Objects/weakrefobject.c' line='131' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyWeakref_ClearRef'>
- <parameter type-id='type-id-550' name='self' filepath='Objects/weakrefobject.c' line='131' column='1'/>
+ <parameter type-id='type-id-549' name='self' filepath='Objects/weakrefobject.c' line='131' column='1'/>
<return type-id='type-id-3'/>
</function-decl>
<function-decl name='PyWeakref_NewProxy' mangled-name='PyWeakref_NewProxy' filepath='Objects/weakrefobject.c' line='921' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyWeakref_NewProxy'>
@@ -10740,35 +10731,35 @@
<return type-id='type-id-5'/>
</function-decl>
</abi-instr>
- <abi-instr address-size='64' path='Parser/action_helpers.c' comp-dir-path='/src' language='LANG_C11'>
- <array-type-def dimensions='1' type-id='type-id-552' size-in-bits='64' id='type-id-553'>
+ <abi-instr address-size='64' path='Parser/action_helpers.c' comp-dir-path='/home/runner/work/cpython/cpython' language='LANG_C11'>
+ <array-type-def dimensions='1' type-id='type-id-551' size-in-bits='64' id='type-id-552'>
<subrange length='1' type-id='type-id-2' id='type-id-428'/>
</array-type-def>
- <array-type-def dimensions='1' type-id='type-id-554' size-in-bits='64' id='type-id-555'>
+ <array-type-def dimensions='1' type-id='type-id-553' size-in-bits='64' id='type-id-554'>
<subrange length='1' type-id='type-id-2' id='type-id-428'/>
</array-type-def>
- <array-type-def dimensions='1' type-id='type-id-556' size-in-bits='64' id='type-id-557'>
+ <array-type-def dimensions='1' type-id='type-id-555' size-in-bits='64' id='type-id-556'>
<subrange length='1' type-id='type-id-2' id='type-id-428'/>
</array-type-def>
- <array-type-def dimensions='1' type-id='type-id-558' size-in-bits='64' id='type-id-559'>
+ <array-type-def dimensions='1' type-id='type-id-557' size-in-bits='64' id='type-id-558'>
<subrange length='1' type-id='type-id-2' id='type-id-428'/>
</array-type-def>
- <array-type-def dimensions='1' type-id='type-id-560' size-in-bits='64' id='type-id-561'>
+ <array-type-def dimensions='1' type-id='type-id-559' size-in-bits='64' id='type-id-560'>
<subrange length='1' type-id='type-id-2' id='type-id-428'/>
</array-type-def>
- <array-type-def dimensions='1' type-id='type-id-562' size-in-bits='64' id='type-id-563'>
+ <array-type-def dimensions='1' type-id='type-id-561' size-in-bits='64' id='type-id-562'>
<subrange length='1' type-id='type-id-2' id='type-id-428'/>
</array-type-def>
- <array-type-def dimensions='1' type-id='type-id-564' size-in-bits='64' id='type-id-565'>
+ <array-type-def dimensions='1' type-id='type-id-563' size-in-bits='64' id='type-id-564'>
<subrange length='1' type-id='type-id-2' id='type-id-428'/>
</array-type-def>
- <array-type-def dimensions='1' type-id='type-id-29' size-in-bits='64' id='type-id-566'>
+ <array-type-def dimensions='1' type-id='type-id-29' size-in-bits='64' id='type-id-565'>
<subrange length='1' type-id='type-id-2' id='type-id-428'/>
</array-type-def>
- <array-type-def dimensions='1' type-id='type-id-567' size-in-bits='64' id='type-id-568'>
+ <array-type-def dimensions='1' type-id='type-id-566' size-in-bits='64' id='type-id-567'>
<subrange length='1' type-id='type-id-2' id='type-id-428'/>
</array-type-def>
- <class-decl name='_PyUnicodeWriter' size-in-bits='448' is-struct='yes' naming-typedef-id='type-id-569' visibility='default' filepath='./Include/cpython/unicodeobject.h' line='449' column='1' id='type-id-570'>
+ <class-decl name='_PyUnicodeWriter' size-in-bits='448' is-struct='yes' naming-typedef-id='type-id-568' visibility='default' filepath='./Include/cpython/unicodeobject.h' line='449' column='1' id='type-id-569'>
<data-member access='public' layout-offset-in-bits='0'>
<var-decl name='buffer' type-id='type-id-4' visibility='default' filepath='./Include/cpython/unicodeobject.h' line='450' column='1'/>
</data-member>
@@ -10800,8 +10791,8 @@
<var-decl name='readonly' type-id='type-id-90' visibility='default' filepath='./Include/cpython/unicodeobject.h' line='468' column='1'/>
</data-member>
</class-decl>
- <typedef-decl name='_PyUnicodeWriter' type-id='type-id-570' filepath='./Include/cpython/unicodeobject.h' line='469' column='1' id='type-id-569'/>
- <class-decl name='asdl_generic_seq' size-in-bits='192' is-struct='yes' naming-typedef-id='type-id-571' visibility='default' filepath='./Include/internal/pycore_asdl.h' line='32' column='1' id='type-id-572'>
+ <typedef-decl name='_PyUnicodeWriter' type-id='type-id-569' filepath='./Include/cpython/unicodeobject.h' line='469' column='1' id='type-id-568'/>
+ <class-decl name='asdl_generic_seq' size-in-bits='192' is-struct='yes' naming-typedef-id='type-id-570' visibility='default' filepath='./Include/internal/pycore_asdl.h' line='32' column='1' id='type-id-571'>
<data-member access='public' layout-offset-in-bits='0'>
<var-decl name='size' type-id='type-id-7' visibility='default' filepath='./Include/internal/pycore_asdl.h' line='33' column='1'/>
</data-member>
@@ -10809,11 +10800,11 @@
<var-decl name='elements' type-id='type-id-260' visibility='default' filepath='./Include/internal/pycore_asdl.h' line='33' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='128'>
- <var-decl name='typed_elements' type-id='type-id-566' visibility='default' filepath='./Include/internal/pycore_asdl.h' line='34' column='1'/>
+ <var-decl name='typed_elements' type-id='type-id-565' visibility='default' filepath='./Include/internal/pycore_asdl.h' line='34' column='1'/>
</data-member>
</class-decl>
- <typedef-decl name='asdl_generic_seq' type-id='type-id-572' filepath='./Include/internal/pycore_asdl.h' line='35' column='1' id='type-id-571'/>
- <class-decl name='asdl_identifier_seq' size-in-bits='192' is-struct='yes' naming-typedef-id='type-id-573' visibility='default' filepath='./Include/internal/pycore_asdl.h' line='37' column='1' id='type-id-574'>
+ <typedef-decl name='asdl_generic_seq' type-id='type-id-571' filepath='./Include/internal/pycore_asdl.h' line='35' column='1' id='type-id-570'/>
+ <class-decl name='asdl_identifier_seq' size-in-bits='192' is-struct='yes' naming-typedef-id='type-id-572' visibility='default' filepath='./Include/internal/pycore_asdl.h' line='37' column='1' id='type-id-573'>
<data-member access='public' layout-offset-in-bits='0'>
<var-decl name='size' type-id='type-id-7' visibility='default' filepath='./Include/internal/pycore_asdl.h' line='38' column='1'/>
</data-member>
@@ -10824,17 +10815,17 @@
<var-decl name='typed_elements' type-id='type-id-358' visibility='default' filepath='./Include/internal/pycore_asdl.h' line='39' column='1'/>
</data-member>
</class-decl>
- <typedef-decl name='asdl_identifier_seq' type-id='type-id-574' filepath='./Include/internal/pycore_asdl.h' line='40' column='1' id='type-id-573'/>
- <typedef-decl name='mod_ty' type-id='type-id-575' filepath='./Include/internal/pycore_ast.h' line='15' column='1' id='type-id-576'/>
- <typedef-decl name='stmt_ty' type-id='type-id-577' filepath='./Include/internal/pycore_ast.h' line='17' column='1' id='type-id-560'/>
- <typedef-decl name='excepthandler_ty' type-id='type-id-578' filepath='./Include/internal/pycore_ast.h' line='36' column='1' id='type-id-554'/>
- <typedef-decl name='alias_ty' type-id='type-id-579' filepath='./Include/internal/pycore_ast.h' line='44' column='1' id='type-id-552'/>
- <typedef-decl name='withitem_ty' type-id='type-id-580' filepath='./Include/internal/pycore_ast.h' line='46' column='1' id='type-id-567'/>
- <typedef-decl name='match_case_ty' type-id='type-id-581' filepath='./Include/internal/pycore_ast.h' line='48' column='1' id='type-id-556'/>
- <typedef-decl name='pattern_ty' type-id='type-id-582' filepath='./Include/internal/pycore_ast.h' line='50' column='1' id='type-id-558'/>
- <typedef-decl name='type_ignore_ty' type-id='type-id-583' filepath='./Include/internal/pycore_ast.h' line='52' column='1' id='type-id-562'/>
- <typedef-decl name='type_param_ty' type-id='type-id-584' filepath='./Include/internal/pycore_ast.h' line='54' column='1' id='type-id-564'/>
- <class-decl name='asdl_stmt_seq' size-in-bits='192' is-struct='yes' naming-typedef-id='type-id-585' visibility='default' filepath='./Include/internal/pycore_ast.h' line='64' column='1' id='type-id-586'>
+ <typedef-decl name='asdl_identifier_seq' type-id='type-id-573' filepath='./Include/internal/pycore_asdl.h' line='40' column='1' id='type-id-572'/>
+ <typedef-decl name='mod_ty' type-id='type-id-574' filepath='./Include/internal/pycore_ast.h' line='15' column='1' id='type-id-575'/>
+ <typedef-decl name='stmt_ty' type-id='type-id-576' filepath='./Include/internal/pycore_ast.h' line='17' column='1' id='type-id-559'/>
+ <typedef-decl name='excepthandler_ty' type-id='type-id-577' filepath='./Include/internal/pycore_ast.h' line='36' column='1' id='type-id-553'/>
+ <typedef-decl name='alias_ty' type-id='type-id-578' filepath='./Include/internal/pycore_ast.h' line='44' column='1' id='type-id-551'/>
+ <typedef-decl name='withitem_ty' type-id='type-id-579' filepath='./Include/internal/pycore_ast.h' line='46' column='1' id='type-id-566'/>
+ <typedef-decl name='match_case_ty' type-id='type-id-580' filepath='./Include/internal/pycore_ast.h' line='48' column='1' id='type-id-555'/>
+ <typedef-decl name='pattern_ty' type-id='type-id-581' filepath='./Include/internal/pycore_ast.h' line='50' column='1' id='type-id-557'/>
+ <typedef-decl name='type_ignore_ty' type-id='type-id-582' filepath='./Include/internal/pycore_ast.h' line='52' column='1' id='type-id-561'/>
+ <typedef-decl name='type_param_ty' type-id='type-id-583' filepath='./Include/internal/pycore_ast.h' line='54' column='1' id='type-id-563'/>
+ <class-decl name='asdl_stmt_seq' size-in-bits='192' is-struct='yes' naming-typedef-id='type-id-584' visibility='default' filepath='./Include/internal/pycore_ast.h' line='64' column='1' id='type-id-585'>
<data-member access='public' layout-offset-in-bits='0'>
<var-decl name='size' type-id='type-id-7' visibility='default' filepath='./Include/internal/pycore_ast.h' line='65' column='1'/>
</data-member>
@@ -10842,11 +10833,11 @@
<var-decl name='elements' type-id='type-id-260' visibility='default' filepath='./Include/internal/pycore_ast.h' line='65' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='128'>
- <var-decl name='typed_elements' type-id='type-id-561' visibility='default' filepath='./Include/internal/pycore_ast.h' line='66' column='1'/>
+ <var-decl name='typed_elements' type-id='type-id-560' visibility='default' filepath='./Include/internal/pycore_ast.h' line='66' column='1'/>
</data-member>
</class-decl>
- <typedef-decl name='asdl_stmt_seq' type-id='type-id-586' filepath='./Include/internal/pycore_ast.h' line='67' column='1' id='type-id-585'/>
- <class-decl name='asdl_excepthandler_seq' size-in-bits='192' is-struct='yes' naming-typedef-id='type-id-587' visibility='default' filepath='./Include/internal/pycore_ast.h' line='86' column='1' id='type-id-588'>
+ <typedef-decl name='asdl_stmt_seq' type-id='type-id-585' filepath='./Include/internal/pycore_ast.h' line='67' column='1' id='type-id-584'/>
+ <class-decl name='asdl_excepthandler_seq' size-in-bits='192' is-struct='yes' naming-typedef-id='type-id-586' visibility='default' filepath='./Include/internal/pycore_ast.h' line='86' column='1' id='type-id-587'>
<data-member access='public' layout-offset-in-bits='0'>
<var-decl name='size' type-id='type-id-7' visibility='default' filepath='./Include/internal/pycore_ast.h' line='87' column='1'/>
</data-member>
@@ -10854,11 +10845,11 @@
<var-decl name='elements' type-id='type-id-260' visibility='default' filepath='./Include/internal/pycore_ast.h' line='87' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='128'>
- <var-decl name='typed_elements' type-id='type-id-555' visibility='default' filepath='./Include/internal/pycore_ast.h' line='88' column='1'/>
+ <var-decl name='typed_elements' type-id='type-id-554' visibility='default' filepath='./Include/internal/pycore_ast.h' line='88' column='1'/>
</data-member>
</class-decl>
- <typedef-decl name='asdl_excepthandler_seq' type-id='type-id-588' filepath='./Include/internal/pycore_ast.h' line='89' column='1' id='type-id-587'/>
- <class-decl name='asdl_alias_seq' size-in-bits='192' is-struct='yes' naming-typedef-id='type-id-589' visibility='default' filepath='./Include/internal/pycore_ast.h' line='115' column='1' id='type-id-590'>
+ <typedef-decl name='asdl_excepthandler_seq' type-id='type-id-587' filepath='./Include/internal/pycore_ast.h' line='89' column='1' id='type-id-586'/>
+ <class-decl name='asdl_alias_seq' size-in-bits='192' is-struct='yes' naming-typedef-id='type-id-588' visibility='default' filepath='./Include/internal/pycore_ast.h' line='115' column='1' id='type-id-589'>
<data-member access='public' layout-offset-in-bits='0'>
<var-decl name='size' type-id='type-id-7' visibility='default' filepath='./Include/internal/pycore_ast.h' line='116' column='1'/>
</data-member>
@@ -10866,11 +10857,11 @@
<var-decl name='elements' type-id='type-id-260' visibility='default' filepath='./Include/internal/pycore_ast.h' line='116' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='128'>
- <var-decl name='typed_elements' type-id='type-id-553' visibility='default' filepath='./Include/internal/pycore_ast.h' line='117' column='1'/>
+ <var-decl name='typed_elements' type-id='type-id-552' visibility='default' filepath='./Include/internal/pycore_ast.h' line='117' column='1'/>
</data-member>
</class-decl>
- <typedef-decl name='asdl_alias_seq' type-id='type-id-590' filepath='./Include/internal/pycore_ast.h' line='118' column='1' id='type-id-589'/>
- <class-decl name='asdl_withitem_seq' size-in-bits='192' is-struct='yes' naming-typedef-id='type-id-591' visibility='default' filepath='./Include/internal/pycore_ast.h' line='122' column='1' id='type-id-592'>
+ <typedef-decl name='asdl_alias_seq' type-id='type-id-589' filepath='./Include/internal/pycore_ast.h' line='118' column='1' id='type-id-588'/>
+ <class-decl name='asdl_withitem_seq' size-in-bits='192' is-struct='yes' naming-typedef-id='type-id-590' visibility='default' filepath='./Include/internal/pycore_ast.h' line='122' column='1' id='type-id-591'>
<data-member access='public' layout-offset-in-bits='0'>
<var-decl name='size' type-id='type-id-7' visibility='default' filepath='./Include/internal/pycore_ast.h' line='123' column='1'/>
</data-member>
@@ -10878,11 +10869,11 @@
<var-decl name='elements' type-id='type-id-260' visibility='default' filepath='./Include/internal/pycore_ast.h' line='123' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='128'>
- <var-decl name='typed_elements' type-id='type-id-568' visibility='default' filepath='./Include/internal/pycore_ast.h' line='124' column='1'/>
+ <var-decl name='typed_elements' type-id='type-id-567' visibility='default' filepath='./Include/internal/pycore_ast.h' line='124' column='1'/>
</data-member>
</class-decl>
- <typedef-decl name='asdl_withitem_seq' type-id='type-id-592' filepath='./Include/internal/pycore_ast.h' line='125' column='1' id='type-id-591'/>
- <class-decl name='asdl_match_case_seq' size-in-bits='192' is-struct='yes' naming-typedef-id='type-id-593' visibility='default' filepath='./Include/internal/pycore_ast.h' line='129' column='1' id='type-id-594'>
+ <typedef-decl name='asdl_withitem_seq' type-id='type-id-591' filepath='./Include/internal/pycore_ast.h' line='125' column='1' id='type-id-590'/>
+ <class-decl name='asdl_match_case_seq' size-in-bits='192' is-struct='yes' naming-typedef-id='type-id-592' visibility='default' filepath='./Include/internal/pycore_ast.h' line='129' column='1' id='type-id-593'>
<data-member access='public' layout-offset-in-bits='0'>
<var-decl name='size' type-id='type-id-7' visibility='default' filepath='./Include/internal/pycore_ast.h' line='130' column='1'/>
</data-member>
@@ -10890,11 +10881,11 @@
<var-decl name='elements' type-id='type-id-260' visibility='default' filepath='./Include/internal/pycore_ast.h' line='130' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='128'>
- <var-decl name='typed_elements' type-id='type-id-557' visibility='default' filepath='./Include/internal/pycore_ast.h' line='131' column='1'/>
+ <var-decl name='typed_elements' type-id='type-id-556' visibility='default' filepath='./Include/internal/pycore_ast.h' line='131' column='1'/>
</data-member>
</class-decl>
- <typedef-decl name='asdl_match_case_seq' type-id='type-id-594' filepath='./Include/internal/pycore_ast.h' line='132' column='1' id='type-id-593'/>
- <class-decl name='asdl_pattern_seq' size-in-bits='192' is-struct='yes' naming-typedef-id='type-id-595' visibility='default' filepath='./Include/internal/pycore_ast.h' line='137' column='1' id='type-id-596'>
+ <typedef-decl name='asdl_match_case_seq' type-id='type-id-593' filepath='./Include/internal/pycore_ast.h' line='132' column='1' id='type-id-592'/>
+ <class-decl name='asdl_pattern_seq' size-in-bits='192' is-struct='yes' naming-typedef-id='type-id-594' visibility='default' filepath='./Include/internal/pycore_ast.h' line='137' column='1' id='type-id-595'>
<data-member access='public' layout-offset-in-bits='0'>
<var-decl name='size' type-id='type-id-7' visibility='default' filepath='./Include/internal/pycore_ast.h' line='138' column='1'/>
</data-member>
@@ -10902,11 +10893,11 @@
<var-decl name='elements' type-id='type-id-260' visibility='default' filepath='./Include/internal/pycore_ast.h' line='138' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='128'>
- <var-decl name='typed_elements' type-id='type-id-559' visibility='default' filepath='./Include/internal/pycore_ast.h' line='139' column='1'/>
+ <var-decl name='typed_elements' type-id='type-id-558' visibility='default' filepath='./Include/internal/pycore_ast.h' line='139' column='1'/>
</data-member>
</class-decl>
- <typedef-decl name='asdl_pattern_seq' type-id='type-id-596' filepath='./Include/internal/pycore_ast.h' line='140' column='1' id='type-id-595'/>
- <class-decl name='asdl_type_ignore_seq' size-in-bits='192' is-struct='yes' naming-typedef-id='type-id-597' visibility='default' filepath='./Include/internal/pycore_ast.h' line='144' column='1' id='type-id-598'>
+ <typedef-decl name='asdl_pattern_seq' type-id='type-id-595' filepath='./Include/internal/pycore_ast.h' line='140' column='1' id='type-id-594'/>
+ <class-decl name='asdl_type_ignore_seq' size-in-bits='192' is-struct='yes' naming-typedef-id='type-id-596' visibility='default' filepath='./Include/internal/pycore_ast.h' line='144' column='1' id='type-id-597'>
<data-member access='public' layout-offset-in-bits='0'>
<var-decl name='size' type-id='type-id-7' visibility='default' filepath='./Include/internal/pycore_ast.h' line='145' column='1'/>
</data-member>
@@ -10914,11 +10905,11 @@
<var-decl name='elements' type-id='type-id-260' visibility='default' filepath='./Include/internal/pycore_ast.h' line='145' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='128'>
- <var-decl name='typed_elements' type-id='type-id-563' visibility='default' filepath='./Include/internal/pycore_ast.h' line='146' column='1'/>
+ <var-decl name='typed_elements' type-id='type-id-562' visibility='default' filepath='./Include/internal/pycore_ast.h' line='146' column='1'/>
</data-member>
</class-decl>
- <typedef-decl name='asdl_type_ignore_seq' type-id='type-id-598' filepath='./Include/internal/pycore_ast.h' line='147' column='1' id='type-id-597'/>
- <class-decl name='asdl_type_param_seq' size-in-bits='192' is-struct='yes' naming-typedef-id='type-id-599' visibility='default' filepath='./Include/internal/pycore_ast.h' line='152' column='1' id='type-id-600'>
+ <typedef-decl name='asdl_type_ignore_seq' type-id='type-id-597' filepath='./Include/internal/pycore_ast.h' line='147' column='1' id='type-id-596'/>
+ <class-decl name='asdl_type_param_seq' size-in-bits='192' is-struct='yes' naming-typedef-id='type-id-598' visibility='default' filepath='./Include/internal/pycore_ast.h' line='152' column='1' id='type-id-599'>
<data-member access='public' layout-offset-in-bits='0'>
<var-decl name='size' type-id='type-id-7' visibility='default' filepath='./Include/internal/pycore_ast.h' line='153' column='1'/>
</data-member>
@@ -10926,66 +10917,66 @@
<var-decl name='elements' type-id='type-id-260' visibility='default' filepath='./Include/internal/pycore_ast.h' line='153' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='128'>
- <var-decl name='typed_elements' type-id='type-id-565' visibility='default' filepath='./Include/internal/pycore_ast.h' line='154' column='1'/>
+ <var-decl name='typed_elements' type-id='type-id-564' visibility='default' filepath='./Include/internal/pycore_ast.h' line='154' column='1'/>
</data-member>
</class-decl>
- <typedef-decl name='asdl_type_param_seq' type-id='type-id-600' filepath='./Include/internal/pycore_ast.h' line='155' column='1' id='type-id-599'/>
- <enum-decl name='_mod_kind' filepath='./Include/internal/pycore_ast.h' line='161' column='1' id='type-id-601'>
+ <typedef-decl name='asdl_type_param_seq' type-id='type-id-599' filepath='./Include/internal/pycore_ast.h' line='155' column='1' id='type-id-598'/>
+ <enum-decl name='_mod_kind' filepath='./Include/internal/pycore_ast.h' line='161' column='1' id='type-id-600'>
<underlying-type type-id='type-id-31'/>
<enumerator name='Module_kind' value='1'/>
<enumerator name='Interactive_kind' value='2'/>
<enumerator name='Expression_kind' value='3'/>
<enumerator name='FunctionType_kind' value='4'/>
</enum-decl>
- <class-decl name='_mod' size-in-bits='192' is-struct='yes' visibility='default' filepath='./Include/internal/pycore_ast.h' line='163' column='1' id='type-id-602'>
+ <class-decl name='_mod' size-in-bits='192' is-struct='yes' visibility='default' filepath='./Include/internal/pycore_ast.h' line='163' column='1' id='type-id-601'>
<data-member access='public' layout-offset-in-bits='0'>
- <var-decl name='kind' type-id='type-id-601' visibility='default' filepath='./Include/internal/pycore_ast.h' line='164' column='1'/>
+ <var-decl name='kind' type-id='type-id-600' visibility='default' filepath='./Include/internal/pycore_ast.h' line='164' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='64'>
- <var-decl name='v' type-id='type-id-603' visibility='default' filepath='./Include/internal/pycore_ast.h' line='184' column='1'/>
+ <var-decl name='v' type-id='type-id-602' visibility='default' filepath='./Include/internal/pycore_ast.h' line='184' column='1'/>
</data-member>
</class-decl>
- <union-decl name='__anonymous_union__' size-in-bits='128' is-anonymous='yes' visibility='default' filepath='./Include/internal/pycore_ast.h' line='165' column='1' id='type-id-603'>
+ <union-decl name='__anonymous_union__' size-in-bits='128' is-anonymous='yes' visibility='default' filepath='./Include/internal/pycore_ast.h' line='165' column='1' id='type-id-602'>
<data-member access='public'>
- <var-decl name='Module' type-id='type-id-604' visibility='default' filepath='./Include/internal/pycore_ast.h' line='169' column='1'/>
+ <var-decl name='Module' type-id='type-id-603' visibility='default' filepath='./Include/internal/pycore_ast.h' line='169' column='1'/>
</data-member>
<data-member access='public'>
- <var-decl name='Interactive' type-id='type-id-605' visibility='default' filepath='./Include/internal/pycore_ast.h' line='173' column='1'/>
+ <var-decl name='Interactive' type-id='type-id-604' visibility='default' filepath='./Include/internal/pycore_ast.h' line='173' column='1'/>
</data-member>
<data-member access='public'>
- <var-decl name='Expression' type-id='type-id-606' visibility='default' filepath='./Include/internal/pycore_ast.h' line='177' column='1'/>
+ <var-decl name='Expression' type-id='type-id-605' visibility='default' filepath='./Include/internal/pycore_ast.h' line='177' column='1'/>
</data-member>
<data-member access='public'>
- <var-decl name='FunctionType' type-id='type-id-607' visibility='default' filepath='./Include/internal/pycore_ast.h' line='182' column='1'/>
+ <var-decl name='FunctionType' type-id='type-id-606' visibility='default' filepath='./Include/internal/pycore_ast.h' line='182' column='1'/>
</data-member>
</union-decl>
- <class-decl name='__anonymous_struct__' size-in-bits='128' is-struct='yes' is-anonymous='yes' visibility='default' filepath='./Include/internal/pycore_ast.h' line='166' column='1' id='type-id-604'>
+ <class-decl name='__anonymous_struct__' size-in-bits='128' is-struct='yes' is-anonymous='yes' visibility='default' filepath='./Include/internal/pycore_ast.h' line='166' column='1' id='type-id-603'>
<data-member access='public' layout-offset-in-bits='0'>
- <var-decl name='body' type-id='type-id-608' visibility='default' filepath='./Include/internal/pycore_ast.h' line='167' column='1'/>
+ <var-decl name='body' type-id='type-id-607' visibility='default' filepath='./Include/internal/pycore_ast.h' line='167' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='64'>
- <var-decl name='type_ignores' type-id='type-id-609' visibility='default' filepath='./Include/internal/pycore_ast.h' line='168' column='1'/>
+ <var-decl name='type_ignores' type-id='type-id-608' visibility='default' filepath='./Include/internal/pycore_ast.h' line='168' column='1'/>
</data-member>
</class-decl>
- <class-decl name='__anonymous_struct__39' size-in-bits='64' is-struct='yes' is-anonymous='yes' visibility='default' filepath='./Include/internal/pycore_ast.h' line='171' column='1' id='type-id-605'>
+ <class-decl name='__anonymous_struct__39' size-in-bits='64' is-struct='yes' is-anonymous='yes' visibility='default' filepath='./Include/internal/pycore_ast.h' line='171' column='1' id='type-id-604'>
<data-member access='public' layout-offset-in-bits='0'>
- <var-decl name='body' type-id='type-id-608' visibility='default' filepath='./Include/internal/pycore_ast.h' line='172' column='1'/>
+ <var-decl name='body' type-id='type-id-607' visibility='default' filepath='./Include/internal/pycore_ast.h' line='172' column='1'/>
</data-member>
</class-decl>
- <class-decl name='__anonymous_struct__40' size-in-bits='64' is-struct='yes' is-anonymous='yes' visibility='default' filepath='./Include/internal/pycore_ast.h' line='175' column='1' id='type-id-606'>
+ <class-decl name='__anonymous_struct__40' size-in-bits='64' is-struct='yes' is-anonymous='yes' visibility='default' filepath='./Include/internal/pycore_ast.h' line='175' column='1' id='type-id-605'>
<data-member access='public' layout-offset-in-bits='0'>
- <var-decl name='body' type-id='type-id-610' visibility='default' filepath='./Include/internal/pycore_ast.h' line='176' column='1'/>
+ <var-decl name='body' type-id='type-id-609' visibility='default' filepath='./Include/internal/pycore_ast.h' line='176' column='1'/>
</data-member>
</class-decl>
- <class-decl name='__anonymous_struct__41' size-in-bits='128' is-struct='yes' is-anonymous='yes' visibility='default' filepath='./Include/internal/pycore_ast.h' line='179' column='1' id='type-id-607'>
+ <class-decl name='__anonymous_struct__41' size-in-bits='128' is-struct='yes' is-anonymous='yes' visibility='default' filepath='./Include/internal/pycore_ast.h' line='179' column='1' id='type-id-606'>
<data-member access='public' layout-offset-in-bits='0'>
- <var-decl name='argtypes' type-id='type-id-611' visibility='default' filepath='./Include/internal/pycore_ast.h' line='180' column='1'/>
+ <var-decl name='argtypes' type-id='type-id-610' visibility='default' filepath='./Include/internal/pycore_ast.h' line='180' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='64'>
- <var-decl name='returns' type-id='type-id-610' visibility='default' filepath='./Include/internal/pycore_ast.h' line='181' column='1'/>
+ <var-decl name='returns' type-id='type-id-609' visibility='default' filepath='./Include/internal/pycore_ast.h' line='181' column='1'/>
</data-member>
</class-decl>
- <enum-decl name='_stmt_kind' filepath='./Include/internal/pycore_ast.h' line='187' column='1' id='type-id-612'>
+ <enum-decl name='_stmt_kind' filepath='./Include/internal/pycore_ast.h' line='187' column='1' id='type-id-611'>
<underlying-type type-id='type-id-31'/>
<enumerator name='FunctionDef_kind' value='1'/>
<enumerator name='AsyncFunctionDef_kind' value='2'/>
@@ -11016,12 +11007,12 @@
<enumerator name='Break_kind' value='27'/>
<enumerator name='Continue_kind' value='28'/>
</enum-decl>
- <class-decl name='_stmt' size-in-bits='640' is-struct='yes' visibility='default' filepath='./Include/internal/pycore_ast.h' line='196' column='1' id='type-id-613'>
+ <class-decl name='_stmt' size-in-bits='640' is-struct='yes' visibility='default' filepath='./Include/internal/pycore_ast.h' line='196' column='1' id='type-id-612'>
<data-member access='public' layout-offset-in-bits='0'>
- <var-decl name='kind' type-id='type-id-612' visibility='default' filepath='./Include/internal/pycore_ast.h' line='197' column='1'/>
+ <var-decl name='kind' type-id='type-id-611' visibility='default' filepath='./Include/internal/pycore_ast.h' line='197' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='64'>
- <var-decl name='v' type-id='type-id-614' visibility='default' filepath='./Include/internal/pycore_ast.h' line='352' column='1'/>
+ <var-decl name='v' type-id='type-id-613' visibility='default' filepath='./Include/internal/pycore_ast.h' line='352' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='512'>
<var-decl name='lineno' type-id='type-id-5' visibility='default' filepath='./Include/internal/pycore_ast.h' line='353' column='1'/>
@@ -11036,286 +11027,286 @@
<var-decl name='end_col_offset' type-id='type-id-5' visibility='default' filepath='./Include/internal/pycore_ast.h' line='356' column='1'/>
</data-member>
</class-decl>
- <union-decl name='__anonymous_union__1' size-in-bits='448' is-anonymous='yes' visibility='default' filepath='./Include/internal/pycore_ast.h' line='198' column='1' id='type-id-614'>
+ <union-decl name='__anonymous_union__1' size-in-bits='448' is-anonymous='yes' visibility='default' filepath='./Include/internal/pycore_ast.h' line='198' column='1' id='type-id-613'>
<data-member access='public'>
- <var-decl name='FunctionDef' type-id='type-id-615' visibility='default' filepath='./Include/internal/pycore_ast.h' line='207' column='1'/>
+ <var-decl name='FunctionDef' type-id='type-id-614' visibility='default' filepath='./Include/internal/pycore_ast.h' line='207' column='1'/>
</data-member>
<data-member access='public'>
- <var-decl name='AsyncFunctionDef' type-id='type-id-615' visibility='default' filepath='./Include/internal/pycore_ast.h' line='217' column='1'/>
+ <var-decl name='AsyncFunctionDef' type-id='type-id-614' visibility='default' filepath='./Include/internal/pycore_ast.h' line='217' column='1'/>
</data-member>
<data-member access='public'>
- <var-decl name='ClassDef' type-id='type-id-616' visibility='default' filepath='./Include/internal/pycore_ast.h' line='226' column='1'/>
+ <var-decl name='ClassDef' type-id='type-id-615' visibility='default' filepath='./Include/internal/pycore_ast.h' line='226' column='1'/>
</data-member>
<data-member access='public'>
- <var-decl name='Return' type-id='type-id-617' visibility='default' filepath='./Include/internal/pycore_ast.h' line='230' column='1'/>
+ <var-decl name='Return' type-id='type-id-616' visibility='default' filepath='./Include/internal/pycore_ast.h' line='230' column='1'/>
</data-member>
<data-member access='public'>
- <var-decl name='Delete' type-id='type-id-618' visibility='default' filepath='./Include/internal/pycore_ast.h' line='234' column='1'/>
+ <var-decl name='Delete' type-id='type-id-617' visibility='default' filepath='./Include/internal/pycore_ast.h' line='234' column='1'/>
</data-member>
<data-member access='public'>
- <var-decl name='Assign' type-id='type-id-619' visibility='default' filepath='./Include/internal/pycore_ast.h' line='240' column='1'/>
+ <var-decl name='Assign' type-id='type-id-618' visibility='default' filepath='./Include/internal/pycore_ast.h' line='240' column='1'/>
</data-member>
<data-member access='public'>
- <var-decl name='TypeAlias' type-id='type-id-620' visibility='default' filepath='./Include/internal/pycore_ast.h' line='246' column='1'/>
+ <var-decl name='TypeAlias' type-id='type-id-619' visibility='default' filepath='./Include/internal/pycore_ast.h' line='246' column='1'/>
</data-member>
<data-member access='public'>
- <var-decl name='AugAssign' type-id='type-id-621' visibility='default' filepath='./Include/internal/pycore_ast.h' line='252' column='1'/>
+ <var-decl name='AugAssign' type-id='type-id-620' visibility='default' filepath='./Include/internal/pycore_ast.h' line='252' column='1'/>
</data-member>
<data-member access='public'>
- <var-decl name='AnnAssign' type-id='type-id-622' visibility='default' filepath='./Include/internal/pycore_ast.h' line='259' column='1'/>
+ <var-decl name='AnnAssign' type-id='type-id-621' visibility='default' filepath='./Include/internal/pycore_ast.h' line='259' column='1'/>
</data-member>
<data-member access='public'>
- <var-decl name='For' type-id='type-id-623' visibility='default' filepath='./Include/internal/pycore_ast.h' line='267' column='1'/>
+ <var-decl name='For' type-id='type-id-622' visibility='default' filepath='./Include/internal/pycore_ast.h' line='267' column='1'/>
</data-member>
<data-member access='public'>
- <var-decl name='AsyncFor' type-id='type-id-623' visibility='default' filepath='./Include/internal/pycore_ast.h' line='275' column='1'/>
+ <var-decl name='AsyncFor' type-id='type-id-622' visibility='default' filepath='./Include/internal/pycore_ast.h' line='275' column='1'/>
</data-member>
<data-member access='public'>
- <var-decl name='While' type-id='type-id-624' visibility='default' filepath='./Include/internal/pycore_ast.h' line='281' column='1'/>
+ <var-decl name='While' type-id='type-id-623' visibility='default' filepath='./Include/internal/pycore_ast.h' line='281' column='1'/>
</data-member>
<data-member access='public'>
- <var-decl name='If' type-id='type-id-624' visibility='default' filepath='./Include/internal/pycore_ast.h' line='287' column='1'/>
+ <var-decl name='If' type-id='type-id-623' visibility='default' filepath='./Include/internal/pycore_ast.h' line='287' column='1'/>
</data-member>
<data-member access='public'>
- <var-decl name='With' type-id='type-id-625' visibility='default' filepath='./Include/internal/pycore_ast.h' line='293' column='1'/>
+ <var-decl name='With' type-id='type-id-624' visibility='default' filepath='./Include/internal/pycore_ast.h' line='293' column='1'/>
</data-member>
<data-member access='public'>
- <var-decl name='AsyncWith' type-id='type-id-625' visibility='default' filepath='./Include/internal/pycore_ast.h' line='299' column='1'/>
+ <var-decl name='AsyncWith' type-id='type-id-624' visibility='default' filepath='./Include/internal/pycore_ast.h' line='299' column='1'/>
</data-member>
<data-member access='public'>
- <var-decl name='Match' type-id='type-id-626' visibility='default' filepath='./Include/internal/pycore_ast.h' line='304' column='1'/>
+ <var-decl name='Match' type-id='type-id-625' visibility='default' filepath='./Include/internal/pycore_ast.h' line='304' column='1'/>
</data-member>
<data-member access='public'>
- <var-decl name='Raise' type-id='type-id-627' visibility='default' filepath='./Include/internal/pycore_ast.h' line='309' column='1'/>
+ <var-decl name='Raise' type-id='type-id-626' visibility='default' filepath='./Include/internal/pycore_ast.h' line='309' column='1'/>
</data-member>
<data-member access='public'>
- <var-decl name='Try' type-id='type-id-628' visibility='default' filepath='./Include/internal/pycore_ast.h' line='316' column='1'/>
+ <var-decl name='Try' type-id='type-id-627' visibility='default' filepath='./Include/internal/pycore_ast.h' line='316' column='1'/>
</data-member>
<data-member access='public'>
- <var-decl name='TryStar' type-id='type-id-628' visibility='default' filepath='./Include/internal/pycore_ast.h' line='323' column='1'/>
+ <var-decl name='TryStar' type-id='type-id-627' visibility='default' filepath='./Include/internal/pycore_ast.h' line='323' column='1'/>
</data-member>
<data-member access='public'>
- <var-decl name='Assert' type-id='type-id-629' visibility='default' filepath='./Include/internal/pycore_ast.h' line='328' column='1'/>
+ <var-decl name='Assert' type-id='type-id-628' visibility='default' filepath='./Include/internal/pycore_ast.h' line='328' column='1'/>
</data-member>
<data-member access='public'>
- <var-decl name='Import' type-id='type-id-630' visibility='default' filepath='./Include/internal/pycore_ast.h' line='332' column='1'/>
+ <var-decl name='Import' type-id='type-id-629' visibility='default' filepath='./Include/internal/pycore_ast.h' line='332' column='1'/>
</data-member>
<data-member access='public'>
- <var-decl name='ImportFrom' type-id='type-id-631' visibility='default' filepath='./Include/internal/pycore_ast.h' line='338' column='1'/>
+ <var-decl name='ImportFrom' type-id='type-id-630' visibility='default' filepath='./Include/internal/pycore_ast.h' line='338' column='1'/>
</data-member>
<data-member access='public'>
- <var-decl name='Global' type-id='type-id-632' visibility='default' filepath='./Include/internal/pycore_ast.h' line='342' column='1'/>
+ <var-decl name='Global' type-id='type-id-631' visibility='default' filepath='./Include/internal/pycore_ast.h' line='342' column='1'/>
</data-member>
<data-member access='public'>
- <var-decl name='Nonlocal' type-id='type-id-632' visibility='default' filepath='./Include/internal/pycore_ast.h' line='346' column='1'/>
+ <var-decl name='Nonlocal' type-id='type-id-631' visibility='default' filepath='./Include/internal/pycore_ast.h' line='346' column='1'/>
</data-member>
<data-member access='public'>
- <var-decl name='Expr' type-id='type-id-617' visibility='default' filepath='./Include/internal/pycore_ast.h' line='350' column='1'/>
+ <var-decl name='Expr' type-id='type-id-616' visibility='default' filepath='./Include/internal/pycore_ast.h' line='350' column='1'/>
</data-member>
</union-decl>
- <class-decl name='__anonymous_struct__2' size-in-bits='448' is-struct='yes' is-anonymous='yes' visibility='default' filepath='./Include/internal/pycore_ast.h' line='199' column='1' id='type-id-615'>
+ <class-decl name='__anonymous_struct__2' size-in-bits='448' is-struct='yes' is-anonymous='yes' visibility='default' filepath='./Include/internal/pycore_ast.h' line='199' column='1' id='type-id-614'>
<data-member access='public' layout-offset-in-bits='0'>
- <var-decl name='name' type-id='type-id-633' visibility='default' filepath='./Include/internal/pycore_ast.h' line='200' column='1'/>
+ <var-decl name='name' type-id='type-id-632' visibility='default' filepath='./Include/internal/pycore_ast.h' line='200' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='64'>
- <var-decl name='args' type-id='type-id-634' visibility='default' filepath='./Include/internal/pycore_ast.h' line='201' column='1'/>
+ <var-decl name='args' type-id='type-id-633' visibility='default' filepath='./Include/internal/pycore_ast.h' line='201' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='128'>
- <var-decl name='body' type-id='type-id-608' visibility='default' filepath='./Include/internal/pycore_ast.h' line='202' column='1'/>
+ <var-decl name='body' type-id='type-id-607' visibility='default' filepath='./Include/internal/pycore_ast.h' line='202' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='192'>
- <var-decl name='decorator_list' type-id='type-id-611' visibility='default' filepath='./Include/internal/pycore_ast.h' line='203' column='1'/>
+ <var-decl name='decorator_list' type-id='type-id-610' visibility='default' filepath='./Include/internal/pycore_ast.h' line='203' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='256'>
- <var-decl name='returns' type-id='type-id-610' visibility='default' filepath='./Include/internal/pycore_ast.h' line='204' column='1'/>
+ <var-decl name='returns' type-id='type-id-609' visibility='default' filepath='./Include/internal/pycore_ast.h' line='204' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='320'>
- <var-decl name='type_comment' type-id='type-id-635' visibility='default' filepath='./Include/internal/pycore_ast.h' line='205' column='1'/>
+ <var-decl name='type_comment' type-id='type-id-634' visibility='default' filepath='./Include/internal/pycore_ast.h' line='205' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='384'>
- <var-decl name='type_params' type-id='type-id-636' visibility='default' filepath='./Include/internal/pycore_ast.h' line='206' column='1'/>
+ <var-decl name='type_params' type-id='type-id-635' visibility='default' filepath='./Include/internal/pycore_ast.h' line='206' column='1'/>
</data-member>
</class-decl>
- <class-decl name='__anonymous_struct__6' size-in-bits='384' is-struct='yes' is-anonymous='yes' visibility='default' filepath='./Include/internal/pycore_ast.h' line='219' column='1' id='type-id-616'>
+ <class-decl name='__anonymous_struct__6' size-in-bits='384' is-struct='yes' is-anonymous='yes' visibility='default' filepath='./Include/internal/pycore_ast.h' line='219' column='1' id='type-id-615'>
<data-member access='public' layout-offset-in-bits='0'>
- <var-decl name='name' type-id='type-id-633' visibility='default' filepath='./Include/internal/pycore_ast.h' line='220' column='1'/>
+ <var-decl name='name' type-id='type-id-632' visibility='default' filepath='./Include/internal/pycore_ast.h' line='220' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='64'>
- <var-decl name='bases' type-id='type-id-611' visibility='default' filepath='./Include/internal/pycore_ast.h' line='221' column='1'/>
+ <var-decl name='bases' type-id='type-id-610' visibility='default' filepath='./Include/internal/pycore_ast.h' line='221' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='128'>
- <var-decl name='keywords' type-id='type-id-637' visibility='default' filepath='./Include/internal/pycore_ast.h' line='222' column='1'/>
+ <var-decl name='keywords' type-id='type-id-636' visibility='default' filepath='./Include/internal/pycore_ast.h' line='222' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='192'>
- <var-decl name='body' type-id='type-id-608' visibility='default' filepath='./Include/internal/pycore_ast.h' line='223' column='1'/>
+ <var-decl name='body' type-id='type-id-607' visibility='default' filepath='./Include/internal/pycore_ast.h' line='223' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='256'>
- <var-decl name='decorator_list' type-id='type-id-611' visibility='default' filepath='./Include/internal/pycore_ast.h' line='224' column='1'/>
+ <var-decl name='decorator_list' type-id='type-id-610' visibility='default' filepath='./Include/internal/pycore_ast.h' line='224' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='320'>
- <var-decl name='type_params' type-id='type-id-636' visibility='default' filepath='./Include/internal/pycore_ast.h' line='225' column='1'/>
+ <var-decl name='type_params' type-id='type-id-635' visibility='default' filepath='./Include/internal/pycore_ast.h' line='225' column='1'/>
</data-member>
</class-decl>
- <class-decl name='__anonymous_struct__8' size-in-bits='64' is-struct='yes' is-anonymous='yes' visibility='default' filepath='./Include/internal/pycore_ast.h' line='232' column='1' id='type-id-618'>
+ <class-decl name='__anonymous_struct__8' size-in-bits='64' is-struct='yes' is-anonymous='yes' visibility='default' filepath='./Include/internal/pycore_ast.h' line='232' column='1' id='type-id-617'>
<data-member access='public' layout-offset-in-bits='0'>
- <var-decl name='targets' type-id='type-id-611' visibility='default' filepath='./Include/internal/pycore_ast.h' line='233' column='1'/>
+ <var-decl name='targets' type-id='type-id-610' visibility='default' filepath='./Include/internal/pycore_ast.h' line='233' column='1'/>
</data-member>
</class-decl>
- <class-decl name='__anonymous_struct__9' size-in-bits='192' is-struct='yes' is-anonymous='yes' visibility='default' filepath='./Include/internal/pycore_ast.h' line='236' column='1' id='type-id-619'>
+ <class-decl name='__anonymous_struct__9' size-in-bits='192' is-struct='yes' is-anonymous='yes' visibility='default' filepath='./Include/internal/pycore_ast.h' line='236' column='1' id='type-id-618'>
<data-member access='public' layout-offset-in-bits='0'>
- <var-decl name='targets' type-id='type-id-611' visibility='default' filepath='./Include/internal/pycore_ast.h' line='237' column='1'/>
+ <var-decl name='targets' type-id='type-id-610' visibility='default' filepath='./Include/internal/pycore_ast.h' line='237' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='64'>
- <var-decl name='value' type-id='type-id-610' visibility='default' filepath='./Include/internal/pycore_ast.h' line='238' column='1'/>
+ <var-decl name='value' type-id='type-id-609' visibility='default' filepath='./Include/internal/pycore_ast.h' line='238' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='128'>
- <var-decl name='type_comment' type-id='type-id-635' visibility='default' filepath='./Include/internal/pycore_ast.h' line='239' column='1'/>
+ <var-decl name='type_comment' type-id='type-id-634' visibility='default' filepath='./Include/internal/pycore_ast.h' line='239' column='1'/>
</data-member>
</class-decl>
- <class-decl name='__anonymous_struct__10' size-in-bits='192' is-struct='yes' is-anonymous='yes' visibility='default' filepath='./Include/internal/pycore_ast.h' line='242' column='1' id='type-id-620'>
+ <class-decl name='__anonymous_struct__10' size-in-bits='192' is-struct='yes' is-anonymous='yes' visibility='default' filepath='./Include/internal/pycore_ast.h' line='242' column='1' id='type-id-619'>
<data-member access='public' layout-offset-in-bits='0'>
- <var-decl name='name' type-id='type-id-610' visibility='default' filepath='./Include/internal/pycore_ast.h' line='243' column='1'/>
+ <var-decl name='name' type-id='type-id-609' visibility='default' filepath='./Include/internal/pycore_ast.h' line='243' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='64'>
- <var-decl name='type_params' type-id='type-id-636' visibility='default' filepath='./Include/internal/pycore_ast.h' line='244' column='1'/>
+ <var-decl name='type_params' type-id='type-id-635' visibility='default' filepath='./Include/internal/pycore_ast.h' line='244' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='128'>
- <var-decl name='value' type-id='type-id-610' visibility='default' filepath='./Include/internal/pycore_ast.h' line='245' column='1'/>
+ <var-decl name='value' type-id='type-id-609' visibility='default' filepath='./Include/internal/pycore_ast.h' line='245' column='1'/>
</data-member>
</class-decl>
- <class-decl name='__anonymous_struct__11' size-in-bits='192' is-struct='yes' is-anonymous='yes' visibility='default' filepath='./Include/internal/pycore_ast.h' line='248' column='1' id='type-id-621'>
+ <class-decl name='__anonymous_struct__11' size-in-bits='192' is-struct='yes' is-anonymous='yes' visibility='default' filepath='./Include/internal/pycore_ast.h' line='248' column='1' id='type-id-620'>
<data-member access='public' layout-offset-in-bits='0'>
- <var-decl name='target' type-id='type-id-610' visibility='default' filepath='./Include/internal/pycore_ast.h' line='249' column='1'/>
+ <var-decl name='target' type-id='type-id-609' visibility='default' filepath='./Include/internal/pycore_ast.h' line='249' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='64'>
- <var-decl name='op' type-id='type-id-638' visibility='default' filepath='./Include/internal/pycore_ast.h' line='250' column='1'/>
+ <var-decl name='op' type-id='type-id-637' visibility='default' filepath='./Include/internal/pycore_ast.h' line='250' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='128'>
- <var-decl name='value' type-id='type-id-610' visibility='default' filepath='./Include/internal/pycore_ast.h' line='251' column='1'/>
+ <var-decl name='value' type-id='type-id-609' visibility='default' filepath='./Include/internal/pycore_ast.h' line='251' column='1'/>
</data-member>
</class-decl>
- <class-decl name='__anonymous_struct__12' size-in-bits='256' is-struct='yes' is-anonymous='yes' visibility='default' filepath='./Include/internal/pycore_ast.h' line='254' column='1' id='type-id-622'>
+ <class-decl name='__anonymous_struct__12' size-in-bits='256' is-struct='yes' is-anonymous='yes' visibility='default' filepath='./Include/internal/pycore_ast.h' line='254' column='1' id='type-id-621'>
<data-member access='public' layout-offset-in-bits='0'>
- <var-decl name='target' type-id='type-id-610' visibility='default' filepath='./Include/internal/pycore_ast.h' line='255' column='1'/>
+ <var-decl name='target' type-id='type-id-609' visibility='default' filepath='./Include/internal/pycore_ast.h' line='255' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='64'>
- <var-decl name='annotation' type-id='type-id-610' visibility='default' filepath='./Include/internal/pycore_ast.h' line='256' column='1'/>
+ <var-decl name='annotation' type-id='type-id-609' visibility='default' filepath='./Include/internal/pycore_ast.h' line='256' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='128'>
- <var-decl name='value' type-id='type-id-610' visibility='default' filepath='./Include/internal/pycore_ast.h' line='257' column='1'/>
+ <var-decl name='value' type-id='type-id-609' visibility='default' filepath='./Include/internal/pycore_ast.h' line='257' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='192'>
<var-decl name='simple' type-id='type-id-5' visibility='default' filepath='./Include/internal/pycore_ast.h' line='258' column='1'/>
</data-member>
</class-decl>
- <class-decl name='__anonymous_struct__13' size-in-bits='320' is-struct='yes' is-anonymous='yes' visibility='default' filepath='./Include/internal/pycore_ast.h' line='261' column='1' id='type-id-623'>
+ <class-decl name='__anonymous_struct__13' size-in-bits='320' is-struct='yes' is-anonymous='yes' visibility='default' filepath='./Include/internal/pycore_ast.h' line='261' column='1' id='type-id-622'>
<data-member access='public' layout-offset-in-bits='0'>
- <var-decl name='target' type-id='type-id-610' visibility='default' filepath='./Include/internal/pycore_ast.h' line='262' column='1'/>
+ <var-decl name='target' type-id='type-id-609' visibility='default' filepath='./Include/internal/pycore_ast.h' line='262' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='64'>
- <var-decl name='iter' type-id='type-id-610' visibility='default' filepath='./Include/internal/pycore_ast.h' line='263' column='1'/>
+ <var-decl name='iter' type-id='type-id-609' visibility='default' filepath='./Include/internal/pycore_ast.h' line='263' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='128'>
- <var-decl name='body' type-id='type-id-608' visibility='default' filepath='./Include/internal/pycore_ast.h' line='264' column='1'/>
+ <var-decl name='body' type-id='type-id-607' visibility='default' filepath='./Include/internal/pycore_ast.h' line='264' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='192'>
- <var-decl name='orelse' type-id='type-id-608' visibility='default' filepath='./Include/internal/pycore_ast.h' line='265' column='1'/>
+ <var-decl name='orelse' type-id='type-id-607' visibility='default' filepath='./Include/internal/pycore_ast.h' line='265' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='256'>
- <var-decl name='type_comment' type-id='type-id-635' visibility='default' filepath='./Include/internal/pycore_ast.h' line='266' column='1'/>
+ <var-decl name='type_comment' type-id='type-id-634' visibility='default' filepath='./Include/internal/pycore_ast.h' line='266' column='1'/>
</data-member>
</class-decl>
- <class-decl name='__anonymous_struct__15' size-in-bits='192' is-struct='yes' is-anonymous='yes' visibility='default' filepath='./Include/internal/pycore_ast.h' line='277' column='1' id='type-id-624'>
+ <class-decl name='__anonymous_struct__15' size-in-bits='192' is-struct='yes' is-anonymous='yes' visibility='default' filepath='./Include/internal/pycore_ast.h' line='277' column='1' id='type-id-623'>
<data-member access='public' layout-offset-in-bits='0'>
- <var-decl name='test' type-id='type-id-610' visibility='default' filepath='./Include/internal/pycore_ast.h' line='278' column='1'/>
+ <var-decl name='test' type-id='type-id-609' visibility='default' filepath='./Include/internal/pycore_ast.h' line='278' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='64'>
- <var-decl name='body' type-id='type-id-608' visibility='default' filepath='./Include/internal/pycore_ast.h' line='279' column='1'/>
+ <var-decl name='body' type-id='type-id-607' visibility='default' filepath='./Include/internal/pycore_ast.h' line='279' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='128'>
- <var-decl name='orelse' type-id='type-id-608' visibility='default' filepath='./Include/internal/pycore_ast.h' line='280' column='1'/>
+ <var-decl name='orelse' type-id='type-id-607' visibility='default' filepath='./Include/internal/pycore_ast.h' line='280' column='1'/>
</data-member>
</class-decl>
- <class-decl name='__anonymous_struct__17' size-in-bits='192' is-struct='yes' is-anonymous='yes' visibility='default' filepath='./Include/internal/pycore_ast.h' line='289' column='1' id='type-id-625'>
+ <class-decl name='__anonymous_struct__17' size-in-bits='192' is-struct='yes' is-anonymous='yes' visibility='default' filepath='./Include/internal/pycore_ast.h' line='289' column='1' id='type-id-624'>
<data-member access='public' layout-offset-in-bits='0'>
- <var-decl name='items' type-id='type-id-639' visibility='default' filepath='./Include/internal/pycore_ast.h' line='290' column='1'/>
+ <var-decl name='items' type-id='type-id-638' visibility='default' filepath='./Include/internal/pycore_ast.h' line='290' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='64'>
- <var-decl name='body' type-id='type-id-608' visibility='default' filepath='./Include/internal/pycore_ast.h' line='291' column='1'/>
+ <var-decl name='body' type-id='type-id-607' visibility='default' filepath='./Include/internal/pycore_ast.h' line='291' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='128'>
- <var-decl name='type_comment' type-id='type-id-635' visibility='default' filepath='./Include/internal/pycore_ast.h' line='292' column='1'/>
+ <var-decl name='type_comment' type-id='type-id-634' visibility='default' filepath='./Include/internal/pycore_ast.h' line='292' column='1'/>
</data-member>
</class-decl>
- <class-decl name='__anonymous_struct__19' size-in-bits='128' is-struct='yes' is-anonymous='yes' visibility='default' filepath='./Include/internal/pycore_ast.h' line='301' column='1' id='type-id-626'>
+ <class-decl name='__anonymous_struct__19' size-in-bits='128' is-struct='yes' is-anonymous='yes' visibility='default' filepath='./Include/internal/pycore_ast.h' line='301' column='1' id='type-id-625'>
<data-member access='public' layout-offset-in-bits='0'>
- <var-decl name='subject' type-id='type-id-610' visibility='default' filepath='./Include/internal/pycore_ast.h' line='302' column='1'/>
+ <var-decl name='subject' type-id='type-id-609' visibility='default' filepath='./Include/internal/pycore_ast.h' line='302' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='64'>
- <var-decl name='cases' type-id='type-id-640' visibility='default' filepath='./Include/internal/pycore_ast.h' line='303' column='1'/>
+ <var-decl name='cases' type-id='type-id-639' visibility='default' filepath='./Include/internal/pycore_ast.h' line='303' column='1'/>
</data-member>
</class-decl>
- <class-decl name='__anonymous_struct__28' size-in-bits='128' is-struct='yes' is-anonymous='yes' visibility='default' filepath='./Include/internal/pycore_ast.h' line='306' column='1' id='type-id-627'>
+ <class-decl name='__anonymous_struct__28' size-in-bits='128' is-struct='yes' is-anonymous='yes' visibility='default' filepath='./Include/internal/pycore_ast.h' line='306' column='1' id='type-id-626'>
<data-member access='public' layout-offset-in-bits='0'>
- <var-decl name='exc' type-id='type-id-610' visibility='default' filepath='./Include/internal/pycore_ast.h' line='307' column='1'/>
+ <var-decl name='exc' type-id='type-id-609' visibility='default' filepath='./Include/internal/pycore_ast.h' line='307' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='64'>
- <var-decl name='cause' type-id='type-id-610' visibility='default' filepath='./Include/internal/pycore_ast.h' line='308' column='1'/>
+ <var-decl name='cause' type-id='type-id-609' visibility='default' filepath='./Include/internal/pycore_ast.h' line='308' column='1'/>
</data-member>
</class-decl>
- <class-decl name='__anonymous_struct__29' size-in-bits='256' is-struct='yes' is-anonymous='yes' visibility='default' filepath='./Include/internal/pycore_ast.h' line='311' column='1' id='type-id-628'>
+ <class-decl name='__anonymous_struct__29' size-in-bits='256' is-struct='yes' is-anonymous='yes' visibility='default' filepath='./Include/internal/pycore_ast.h' line='311' column='1' id='type-id-627'>
<data-member access='public' layout-offset-in-bits='0'>
- <var-decl name='body' type-id='type-id-608' visibility='default' filepath='./Include/internal/pycore_ast.h' line='312' column='1'/>
+ <var-decl name='body' type-id='type-id-607' visibility='default' filepath='./Include/internal/pycore_ast.h' line='312' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='64'>
- <var-decl name='handlers' type-id='type-id-641' visibility='default' filepath='./Include/internal/pycore_ast.h' line='313' column='1'/>
+ <var-decl name='handlers' type-id='type-id-640' visibility='default' filepath='./Include/internal/pycore_ast.h' line='313' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='128'>
- <var-decl name='orelse' type-id='type-id-608' visibility='default' filepath='./Include/internal/pycore_ast.h' line='314' column='1'/>
+ <var-decl name='orelse' type-id='type-id-607' visibility='default' filepath='./Include/internal/pycore_ast.h' line='314' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='192'>
- <var-decl name='finalbody' type-id='type-id-608' visibility='default' filepath='./Include/internal/pycore_ast.h' line='315' column='1'/>
+ <var-decl name='finalbody' type-id='type-id-607' visibility='default' filepath='./Include/internal/pycore_ast.h' line='315' column='1'/>
</data-member>
</class-decl>
- <class-decl name='__anonymous_struct__32' size-in-bits='128' is-struct='yes' is-anonymous='yes' visibility='default' filepath='./Include/internal/pycore_ast.h' line='325' column='1' id='type-id-629'>
+ <class-decl name='__anonymous_struct__32' size-in-bits='128' is-struct='yes' is-anonymous='yes' visibility='default' filepath='./Include/internal/pycore_ast.h' line='325' column='1' id='type-id-628'>
<data-member access='public' layout-offset-in-bits='0'>
- <var-decl name='test' type-id='type-id-610' visibility='default' filepath='./Include/internal/pycore_ast.h' line='326' column='1'/>
+ <var-decl name='test' type-id='type-id-609' visibility='default' filepath='./Include/internal/pycore_ast.h' line='326' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='64'>
- <var-decl name='msg' type-id='type-id-610' visibility='default' filepath='./Include/internal/pycore_ast.h' line='327' column='1'/>
+ <var-decl name='msg' type-id='type-id-609' visibility='default' filepath='./Include/internal/pycore_ast.h' line='327' column='1'/>
</data-member>
</class-decl>
- <class-decl name='__anonymous_struct__33' size-in-bits='64' is-struct='yes' is-anonymous='yes' visibility='default' filepath='./Include/internal/pycore_ast.h' line='330' column='1' id='type-id-630'>
+ <class-decl name='__anonymous_struct__33' size-in-bits='64' is-struct='yes' is-anonymous='yes' visibility='default' filepath='./Include/internal/pycore_ast.h' line='330' column='1' id='type-id-629'>
<data-member access='public' layout-offset-in-bits='0'>
- <var-decl name='names' type-id='type-id-642' visibility='default' filepath='./Include/internal/pycore_ast.h' line='331' column='1'/>
+ <var-decl name='names' type-id='type-id-641' visibility='default' filepath='./Include/internal/pycore_ast.h' line='331' column='1'/>
</data-member>
</class-decl>
- <class-decl name='__anonymous_struct__34' size-in-bits='192' is-struct='yes' is-anonymous='yes' visibility='default' filepath='./Include/internal/pycore_ast.h' line='334' column='1' id='type-id-631'>
+ <class-decl name='__anonymous_struct__34' size-in-bits='192' is-struct='yes' is-anonymous='yes' visibility='default' filepath='./Include/internal/pycore_ast.h' line='334' column='1' id='type-id-630'>
<data-member access='public' layout-offset-in-bits='0'>
- <var-decl name='module' type-id='type-id-633' visibility='default' filepath='./Include/internal/pycore_ast.h' line='335' column='1'/>
+ <var-decl name='module' type-id='type-id-632' visibility='default' filepath='./Include/internal/pycore_ast.h' line='335' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='64'>
- <var-decl name='names' type-id='type-id-642' visibility='default' filepath='./Include/internal/pycore_ast.h' line='336' column='1'/>
+ <var-decl name='names' type-id='type-id-641' visibility='default' filepath='./Include/internal/pycore_ast.h' line='336' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='128'>
<var-decl name='level' type-id='type-id-5' visibility='default' filepath='./Include/internal/pycore_ast.h' line='337' column='1'/>
</data-member>
</class-decl>
- <class-decl name='__anonymous_struct__35' size-in-bits='64' is-struct='yes' is-anonymous='yes' visibility='default' filepath='./Include/internal/pycore_ast.h' line='340' column='1' id='type-id-632'>
+ <class-decl name='__anonymous_struct__35' size-in-bits='64' is-struct='yes' is-anonymous='yes' visibility='default' filepath='./Include/internal/pycore_ast.h' line='340' column='1' id='type-id-631'>
<data-member access='public' layout-offset-in-bits='0'>
- <var-decl name='names' type-id='type-id-643' visibility='default' filepath='./Include/internal/pycore_ast.h' line='341' column='1'/>
+ <var-decl name='names' type-id='type-id-642' visibility='default' filepath='./Include/internal/pycore_ast.h' line='341' column='1'/>
</data-member>
</class-decl>
- <enum-decl name='_excepthandler_kind' filepath='./Include/internal/pycore_ast.h' line='523' column='1' id='type-id-644'>
+ <enum-decl name='_excepthandler_kind' filepath='./Include/internal/pycore_ast.h' line='523' column='1' id='type-id-643'>
<underlying-type type-id='type-id-31'/>
<enumerator name='ExceptHandler_kind' value='1'/>
</enum-decl>
- <class-decl name='_excepthandler' size-in-bits='384' is-struct='yes' visibility='default' filepath='./Include/internal/pycore_ast.h' line='524' column='1' id='type-id-645'>
+ <class-decl name='_excepthandler' size-in-bits='384' is-struct='yes' visibility='default' filepath='./Include/internal/pycore_ast.h' line='524' column='1' id='type-id-644'>
<data-member access='public' layout-offset-in-bits='0'>
- <var-decl name='kind' type-id='type-id-644' visibility='default' filepath='./Include/internal/pycore_ast.h' line='525' column='1'/>
+ <var-decl name='kind' type-id='type-id-643' visibility='default' filepath='./Include/internal/pycore_ast.h' line='525' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='64'>
- <var-decl name='v' type-id='type-id-646' visibility='default' filepath='./Include/internal/pycore_ast.h' line='533' column='1'/>
+ <var-decl name='v' type-id='type-id-645' visibility='default' filepath='./Include/internal/pycore_ast.h' line='533' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='256'>
<var-decl name='lineno' type-id='type-id-5' visibility='default' filepath='./Include/internal/pycore_ast.h' line='534' column='1'/>
@@ -11330,28 +11321,28 @@
<var-decl name='end_col_offset' type-id='type-id-5' visibility='default' filepath='./Include/internal/pycore_ast.h' line='537' column='1'/>
</data-member>
</class-decl>
- <union-decl name='__anonymous_union__4' size-in-bits='192' is-anonymous='yes' visibility='default' filepath='./Include/internal/pycore_ast.h' line='526' column='1' id='type-id-646'>
+ <union-decl name='__anonymous_union__4' size-in-bits='192' is-anonymous='yes' visibility='default' filepath='./Include/internal/pycore_ast.h' line='526' column='1' id='type-id-645'>
<data-member access='public'>
- <var-decl name='ExceptHandler' type-id='type-id-647' visibility='default' filepath='./Include/internal/pycore_ast.h' line='531' column='1'/>
+ <var-decl name='ExceptHandler' type-id='type-id-646' visibility='default' filepath='./Include/internal/pycore_ast.h' line='531' column='1'/>
</data-member>
</union-decl>
- <class-decl name='__anonymous_struct__31' size-in-bits='192' is-struct='yes' is-anonymous='yes' visibility='default' filepath='./Include/internal/pycore_ast.h' line='527' column='1' id='type-id-647'>
+ <class-decl name='__anonymous_struct__31' size-in-bits='192' is-struct='yes' is-anonymous='yes' visibility='default' filepath='./Include/internal/pycore_ast.h' line='527' column='1' id='type-id-646'>
<data-member access='public' layout-offset-in-bits='0'>
- <var-decl name='type' type-id='type-id-610' visibility='default' filepath='./Include/internal/pycore_ast.h' line='528' column='1'/>
+ <var-decl name='type' type-id='type-id-609' visibility='default' filepath='./Include/internal/pycore_ast.h' line='528' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='64'>
- <var-decl name='name' type-id='type-id-633' visibility='default' filepath='./Include/internal/pycore_ast.h' line='529' column='1'/>
+ <var-decl name='name' type-id='type-id-632' visibility='default' filepath='./Include/internal/pycore_ast.h' line='529' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='128'>
- <var-decl name='body' type-id='type-id-608' visibility='default' filepath='./Include/internal/pycore_ast.h' line='530' column='1'/>
+ <var-decl name='body' type-id='type-id-607' visibility='default' filepath='./Include/internal/pycore_ast.h' line='530' column='1'/>
</data-member>
</class-decl>
- <class-decl name='_alias' size-in-bits='256' is-struct='yes' visibility='default' filepath='./Include/internal/pycore_ast.h' line='569' column='1' id='type-id-648'>
+ <class-decl name='_alias' size-in-bits='256' is-struct='yes' visibility='default' filepath='./Include/internal/pycore_ast.h' line='569' column='1' id='type-id-647'>
<data-member access='public' layout-offset-in-bits='0'>
- <var-decl name='name' type-id='type-id-633' visibility='default' filepath='./Include/internal/pycore_ast.h' line='570' column='1'/>
+ <var-decl name='name' type-id='type-id-632' visibility='default' filepath='./Include/internal/pycore_ast.h' line='570' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='64'>
- <var-decl name='asname' type-id='type-id-633' visibility='default' filepath='./Include/internal/pycore_ast.h' line='571' column='1'/>
+ <var-decl name='asname' type-id='type-id-632' visibility='default' filepath='./Include/internal/pycore_ast.h' line='571' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='128'>
<var-decl name='lineno' type-id='type-id-5' visibility='default' filepath='./Include/internal/pycore_ast.h' line='572' column='1'/>
@@ -11366,26 +11357,26 @@
<var-decl name='end_col_offset' type-id='type-id-5' visibility='default' filepath='./Include/internal/pycore_ast.h' line='575' column='1'/>
</data-member>
</class-decl>
- <class-decl name='_withitem' size-in-bits='128' is-struct='yes' visibility='default' filepath='./Include/internal/pycore_ast.h' line='578' column='1' id='type-id-649'>
+ <class-decl name='_withitem' size-in-bits='128' is-struct='yes' visibility='default' filepath='./Include/internal/pycore_ast.h' line='578' column='1' id='type-id-648'>
<data-member access='public' layout-offset-in-bits='0'>
- <var-decl name='context_expr' type-id='type-id-610' visibility='default' filepath='./Include/internal/pycore_ast.h' line='579' column='1'/>
+ <var-decl name='context_expr' type-id='type-id-609' visibility='default' filepath='./Include/internal/pycore_ast.h' line='579' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='64'>
- <var-decl name='optional_vars' type-id='type-id-610' visibility='default' filepath='./Include/internal/pycore_ast.h' line='580' column='1'/>
+ <var-decl name='optional_vars' type-id='type-id-609' visibility='default' filepath='./Include/internal/pycore_ast.h' line='580' column='1'/>
</data-member>
</class-decl>
- <class-decl name='_match_case' size-in-bits='192' is-struct='yes' visibility='default' filepath='./Include/internal/pycore_ast.h' line='583' column='1' id='type-id-650'>
+ <class-decl name='_match_case' size-in-bits='192' is-struct='yes' visibility='default' filepath='./Include/internal/pycore_ast.h' line='583' column='1' id='type-id-649'>
<data-member access='public' layout-offset-in-bits='0'>
- <var-decl name='pattern' type-id='type-id-558' visibility='default' filepath='./Include/internal/pycore_ast.h' line='584' column='1'/>
+ <var-decl name='pattern' type-id='type-id-557' visibility='default' filepath='./Include/internal/pycore_ast.h' line='584' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='64'>
- <var-decl name='guard' type-id='type-id-610' visibility='default' filepath='./Include/internal/pycore_ast.h' line='585' column='1'/>
+ <var-decl name='guard' type-id='type-id-609' visibility='default' filepath='./Include/internal/pycore_ast.h' line='585' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='128'>
- <var-decl name='body' type-id='type-id-608' visibility='default' filepath='./Include/internal/pycore_ast.h' line='586' column='1'/>
+ <var-decl name='body' type-id='type-id-607' visibility='default' filepath='./Include/internal/pycore_ast.h' line='586' column='1'/>
</data-member>
</class-decl>
- <enum-decl name='_pattern_kind' filepath='./Include/internal/pycore_ast.h' line='589' column='1' id='type-id-651'>
+ <enum-decl name='_pattern_kind' filepath='./Include/internal/pycore_ast.h' line='589' column='1' id='type-id-650'>
<underlying-type type-id='type-id-31'/>
<enumerator name='MatchValue_kind' value='1'/>
<enumerator name='MatchSingleton_kind' value='2'/>
@@ -11396,12 +11387,12 @@
<enumerator name='MatchAs_kind' value='7'/>
<enumerator name='MatchOr_kind' value='8'/>
</enum-decl>
- <class-decl name='_pattern' size-in-bits='448' is-struct='yes' visibility='default' filepath='./Include/internal/pycore_ast.h' line='593' column='1' id='type-id-652'>
+ <class-decl name='_pattern' size-in-bits='448' is-struct='yes' visibility='default' filepath='./Include/internal/pycore_ast.h' line='593' column='1' id='type-id-651'>
<data-member access='public' layout-offset-in-bits='0'>
- <var-decl name='kind' type-id='type-id-651' visibility='default' filepath='./Include/internal/pycore_ast.h' line='594' column='1'/>
+ <var-decl name='kind' type-id='type-id-650' visibility='default' filepath='./Include/internal/pycore_ast.h' line='594' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='64'>
- <var-decl name='v' type-id='type-id-653' visibility='default' filepath='./Include/internal/pycore_ast.h' line='634' column='1'/>
+ <var-decl name='v' type-id='type-id-652' visibility='default' filepath='./Include/internal/pycore_ast.h' line='634' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='320'>
<var-decl name='lineno' type-id='type-id-5' visibility='default' filepath='./Include/internal/pycore_ast.h' line='635' column='1'/>
@@ -11416,117 +11407,117 @@
<var-decl name='end_col_offset' type-id='type-id-5' visibility='default' filepath='./Include/internal/pycore_ast.h' line='638' column='1'/>
</data-member>
</class-decl>
- <union-decl name='__anonymous_union__3' size-in-bits='256' is-anonymous='yes' visibility='default' filepath='./Include/internal/pycore_ast.h' line='595' column='1' id='type-id-653'>
+ <union-decl name='__anonymous_union__3' size-in-bits='256' is-anonymous='yes' visibility='default' filepath='./Include/internal/pycore_ast.h' line='595' column='1' id='type-id-652'>
<data-member access='public'>
- <var-decl name='MatchValue' type-id='type-id-617' visibility='default' filepath='./Include/internal/pycore_ast.h' line='598' column='1'/>
+ <var-decl name='MatchValue' type-id='type-id-616' visibility='default' filepath='./Include/internal/pycore_ast.h' line='598' column='1'/>
</data-member>
<data-member access='public'>
- <var-decl name='MatchSingleton' type-id='type-id-654' visibility='default' filepath='./Include/internal/pycore_ast.h' line='602' column='1'/>
+ <var-decl name='MatchSingleton' type-id='type-id-653' visibility='default' filepath='./Include/internal/pycore_ast.h' line='602' column='1'/>
</data-member>
<data-member access='public'>
- <var-decl name='MatchSequence' type-id='type-id-655' visibility='default' filepath='./Include/internal/pycore_ast.h' line='606' column='1'/>
+ <var-decl name='MatchSequence' type-id='type-id-654' visibility='default' filepath='./Include/internal/pycore_ast.h' line='606' column='1'/>
</data-member>
<data-member access='public'>
- <var-decl name='MatchMapping' type-id='type-id-656' visibility='default' filepath='./Include/internal/pycore_ast.h' line='612' column='1'/>
+ <var-decl name='MatchMapping' type-id='type-id-655' visibility='default' filepath='./Include/internal/pycore_ast.h' line='612' column='1'/>
</data-member>
<data-member access='public'>
- <var-decl name='MatchClass' type-id='type-id-657' visibility='default' filepath='./Include/internal/pycore_ast.h' line='619' column='1'/>
+ <var-decl name='MatchClass' type-id='type-id-656' visibility='default' filepath='./Include/internal/pycore_ast.h' line='619' column='1'/>
</data-member>
<data-member access='public'>
- <var-decl name='MatchStar' type-id='type-id-658' visibility='default' filepath='./Include/internal/pycore_ast.h' line='623' column='1'/>
+ <var-decl name='MatchStar' type-id='type-id-657' visibility='default' filepath='./Include/internal/pycore_ast.h' line='623' column='1'/>
</data-member>
<data-member access='public'>
- <var-decl name='MatchAs' type-id='type-id-659' visibility='default' filepath='./Include/internal/pycore_ast.h' line='628' column='1'/>
+ <var-decl name='MatchAs' type-id='type-id-658' visibility='default' filepath='./Include/internal/pycore_ast.h' line='628' column='1'/>
</data-member>
<data-member access='public'>
- <var-decl name='MatchOr' type-id='type-id-655' visibility='default' filepath='./Include/internal/pycore_ast.h' line='632' column='1'/>
+ <var-decl name='MatchOr' type-id='type-id-654' visibility='default' filepath='./Include/internal/pycore_ast.h' line='632' column='1'/>
</data-member>
</union-decl>
- <class-decl name='__anonymous_struct__22' size-in-bits='64' is-struct='yes' is-anonymous='yes' visibility='default' filepath='./Include/internal/pycore_ast.h' line='600' column='1' id='type-id-654'>
+ <class-decl name='__anonymous_struct__22' size-in-bits='64' is-struct='yes' is-anonymous='yes' visibility='default' filepath='./Include/internal/pycore_ast.h' line='600' column='1' id='type-id-653'>
<data-member access='public' layout-offset-in-bits='0'>
- <var-decl name='value' type-id='type-id-660' visibility='default' filepath='./Include/internal/pycore_ast.h' line='601' column='1'/>
+ <var-decl name='value' type-id='type-id-659' visibility='default' filepath='./Include/internal/pycore_ast.h' line='601' column='1'/>
</data-member>
</class-decl>
- <class-decl name='__anonymous_struct__23' size-in-bits='64' is-struct='yes' is-anonymous='yes' visibility='default' filepath='./Include/internal/pycore_ast.h' line='604' column='1' id='type-id-655'>
+ <class-decl name='__anonymous_struct__23' size-in-bits='64' is-struct='yes' is-anonymous='yes' visibility='default' filepath='./Include/internal/pycore_ast.h' line='604' column='1' id='type-id-654'>
<data-member access='public' layout-offset-in-bits='0'>
- <var-decl name='patterns' type-id='type-id-661' visibility='default' filepath='./Include/internal/pycore_ast.h' line='605' column='1'/>
+ <var-decl name='patterns' type-id='type-id-660' visibility='default' filepath='./Include/internal/pycore_ast.h' line='605' column='1'/>
</data-member>
</class-decl>
- <class-decl name='__anonymous_struct__24' size-in-bits='192' is-struct='yes' is-anonymous='yes' visibility='default' filepath='./Include/internal/pycore_ast.h' line='608' column='1' id='type-id-656'>
+ <class-decl name='__anonymous_struct__24' size-in-bits='192' is-struct='yes' is-anonymous='yes' visibility='default' filepath='./Include/internal/pycore_ast.h' line='608' column='1' id='type-id-655'>
<data-member access='public' layout-offset-in-bits='0'>
- <var-decl name='keys' type-id='type-id-611' visibility='default' filepath='./Include/internal/pycore_ast.h' line='609' column='1'/>
+ <var-decl name='keys' type-id='type-id-610' visibility='default' filepath='./Include/internal/pycore_ast.h' line='609' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='64'>
- <var-decl name='patterns' type-id='type-id-661' visibility='default' filepath='./Include/internal/pycore_ast.h' line='610' column='1'/>
+ <var-decl name='patterns' type-id='type-id-660' visibility='default' filepath='./Include/internal/pycore_ast.h' line='610' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='128'>
- <var-decl name='rest' type-id='type-id-633' visibility='default' filepath='./Include/internal/pycore_ast.h' line='611' column='1'/>
+ <var-decl name='rest' type-id='type-id-632' visibility='default' filepath='./Include/internal/pycore_ast.h' line='611' column='1'/>
</data-member>
</class-decl>
- <class-decl name='__anonymous_struct__25' size-in-bits='256' is-struct='yes' is-anonymous='yes' visibility='default' filepath='./Include/internal/pycore_ast.h' line='614' column='1' id='type-id-657'>
+ <class-decl name='__anonymous_struct__25' size-in-bits='256' is-struct='yes' is-anonymous='yes' visibility='default' filepath='./Include/internal/pycore_ast.h' line='614' column='1' id='type-id-656'>
<data-member access='public' layout-offset-in-bits='0'>
- <var-decl name='cls' type-id='type-id-610' visibility='default' filepath='./Include/internal/pycore_ast.h' line='615' column='1'/>
+ <var-decl name='cls' type-id='type-id-609' visibility='default' filepath='./Include/internal/pycore_ast.h' line='615' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='64'>
- <var-decl name='patterns' type-id='type-id-661' visibility='default' filepath='./Include/internal/pycore_ast.h' line='616' column='1'/>
+ <var-decl name='patterns' type-id='type-id-660' visibility='default' filepath='./Include/internal/pycore_ast.h' line='616' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='128'>
- <var-decl name='kwd_attrs' type-id='type-id-643' visibility='default' filepath='./Include/internal/pycore_ast.h' line='617' column='1'/>
+ <var-decl name='kwd_attrs' type-id='type-id-642' visibility='default' filepath='./Include/internal/pycore_ast.h' line='617' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='192'>
- <var-decl name='kwd_patterns' type-id='type-id-661' visibility='default' filepath='./Include/internal/pycore_ast.h' line='618' column='1'/>
+ <var-decl name='kwd_patterns' type-id='type-id-660' visibility='default' filepath='./Include/internal/pycore_ast.h' line='618' column='1'/>
</data-member>
</class-decl>
- <class-decl name='__anonymous_struct__26' size-in-bits='64' is-struct='yes' is-anonymous='yes' visibility='default' filepath='./Include/internal/pycore_ast.h' line='621' column='1' id='type-id-658'>
+ <class-decl name='__anonymous_struct__26' size-in-bits='64' is-struct='yes' is-anonymous='yes' visibility='default' filepath='./Include/internal/pycore_ast.h' line='621' column='1' id='type-id-657'>
<data-member access='public' layout-offset-in-bits='0'>
- <var-decl name='name' type-id='type-id-633' visibility='default' filepath='./Include/internal/pycore_ast.h' line='622' column='1'/>
+ <var-decl name='name' type-id='type-id-632' visibility='default' filepath='./Include/internal/pycore_ast.h' line='622' column='1'/>
</data-member>
</class-decl>
- <class-decl name='__anonymous_struct__27' size-in-bits='128' is-struct='yes' is-anonymous='yes' visibility='default' filepath='./Include/internal/pycore_ast.h' line='625' column='1' id='type-id-659'>
+ <class-decl name='__anonymous_struct__27' size-in-bits='128' is-struct='yes' is-anonymous='yes' visibility='default' filepath='./Include/internal/pycore_ast.h' line='625' column='1' id='type-id-658'>
<data-member access='public' layout-offset-in-bits='0'>
- <var-decl name='pattern' type-id='type-id-558' visibility='default' filepath='./Include/internal/pycore_ast.h' line='626' column='1'/>
+ <var-decl name='pattern' type-id='type-id-557' visibility='default' filepath='./Include/internal/pycore_ast.h' line='626' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='64'>
- <var-decl name='name' type-id='type-id-633' visibility='default' filepath='./Include/internal/pycore_ast.h' line='627' column='1'/>
+ <var-decl name='name' type-id='type-id-632' visibility='default' filepath='./Include/internal/pycore_ast.h' line='627' column='1'/>
</data-member>
</class-decl>
- <enum-decl name='_type_ignore_kind' filepath='./Include/internal/pycore_ast.h' line='641' column='1' id='type-id-662'>
+ <enum-decl name='_type_ignore_kind' filepath='./Include/internal/pycore_ast.h' line='641' column='1' id='type-id-661'>
<underlying-type type-id='type-id-31'/>
<enumerator name='TypeIgnore_kind' value='1'/>
</enum-decl>
- <class-decl name='_type_ignore' size-in-bits='192' is-struct='yes' visibility='default' filepath='./Include/internal/pycore_ast.h' line='642' column='1' id='type-id-663'>
+ <class-decl name='_type_ignore' size-in-bits='192' is-struct='yes' visibility='default' filepath='./Include/internal/pycore_ast.h' line='642' column='1' id='type-id-662'>
<data-member access='public' layout-offset-in-bits='0'>
- <var-decl name='kind' type-id='type-id-662' visibility='default' filepath='./Include/internal/pycore_ast.h' line='643' column='1'/>
+ <var-decl name='kind' type-id='type-id-661' visibility='default' filepath='./Include/internal/pycore_ast.h' line='643' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='64'>
- <var-decl name='v' type-id='type-id-664' visibility='default' filepath='./Include/internal/pycore_ast.h' line='650' column='1'/>
+ <var-decl name='v' type-id='type-id-663' visibility='default' filepath='./Include/internal/pycore_ast.h' line='650' column='1'/>
</data-member>
</class-decl>
- <union-decl name='__anonymous_union__5' size-in-bits='128' is-anonymous='yes' visibility='default' filepath='./Include/internal/pycore_ast.h' line='644' column='1' id='type-id-664'>
+ <union-decl name='__anonymous_union__5' size-in-bits='128' is-anonymous='yes' visibility='default' filepath='./Include/internal/pycore_ast.h' line='644' column='1' id='type-id-663'>
<data-member access='public'>
- <var-decl name='TypeIgnore' type-id='type-id-665' visibility='default' filepath='./Include/internal/pycore_ast.h' line='648' column='1'/>
+ <var-decl name='TypeIgnore' type-id='type-id-664' visibility='default' filepath='./Include/internal/pycore_ast.h' line='648' column='1'/>
</data-member>
</union-decl>
- <class-decl name='__anonymous_struct__39' size-in-bits='128' is-struct='yes' is-anonymous='yes' visibility='default' filepath='./Include/internal/pycore_ast.h' line='645' column='1' id='type-id-665'>
+ <class-decl name='__anonymous_struct__39' size-in-bits='128' is-struct='yes' is-anonymous='yes' visibility='default' filepath='./Include/internal/pycore_ast.h' line='645' column='1' id='type-id-664'>
<data-member access='public' layout-offset-in-bits='0'>
<var-decl name='lineno' type-id='type-id-5' visibility='default' filepath='./Include/internal/pycore_ast.h' line='646' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='64'>
- <var-decl name='tag' type-id='type-id-635' visibility='default' filepath='./Include/internal/pycore_ast.h' line='647' column='1'/>
+ <var-decl name='tag' type-id='type-id-634' visibility='default' filepath='./Include/internal/pycore_ast.h' line='647' column='1'/>
</data-member>
</class-decl>
- <enum-decl name='_type_param_kind' filepath='./Include/internal/pycore_ast.h' line='653' column='1' id='type-id-666'>
+ <enum-decl name='_type_param_kind' filepath='./Include/internal/pycore_ast.h' line='653' column='1' id='type-id-665'>
<underlying-type type-id='type-id-31'/>
<enumerator name='TypeVar_kind' value='1'/>
<enumerator name='ParamSpec_kind' value='2'/>
<enumerator name='TypeVarTuple_kind' value='3'/>
</enum-decl>
- <class-decl name='_type_param' size-in-bits='384' is-struct='yes' visibility='default' filepath='./Include/internal/pycore_ast.h' line='654' column='1' id='type-id-667'>
+ <class-decl name='_type_param' size-in-bits='384' is-struct='yes' visibility='default' filepath='./Include/internal/pycore_ast.h' line='654' column='1' id='type-id-666'>
<data-member access='public' layout-offset-in-bits='0'>
- <var-decl name='kind' type-id='type-id-666' visibility='default' filepath='./Include/internal/pycore_ast.h' line='655' column='1'/>
+ <var-decl name='kind' type-id='type-id-665' visibility='default' filepath='./Include/internal/pycore_ast.h' line='655' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='64'>
- <var-decl name='v' type-id='type-id-668' visibility='default' filepath='./Include/internal/pycore_ast.h' line='673' column='1'/>
+ <var-decl name='v' type-id='type-id-667' visibility='default' filepath='./Include/internal/pycore_ast.h' line='673' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='256'>
<var-decl name='lineno' type-id='type-id-5' visibility='default' filepath='./Include/internal/pycore_ast.h' line='674' column='1'/>
@@ -11541,57 +11532,57 @@
<var-decl name='end_col_offset' type-id='type-id-5' visibility='default' filepath='./Include/internal/pycore_ast.h' line='677' column='1'/>
</data-member>
</class-decl>
- <union-decl name='__anonymous_union__2' size-in-bits='192' is-anonymous='yes' visibility='default' filepath='./Include/internal/pycore_ast.h' line='656' column='1' id='type-id-668'>
+ <union-decl name='__anonymous_union__2' size-in-bits='192' is-anonymous='yes' visibility='default' filepath='./Include/internal/pycore_ast.h' line='656' column='1' id='type-id-667'>
<data-member access='public'>
- <var-decl name='TypeVar' type-id='type-id-669' visibility='default' filepath='./Include/internal/pycore_ast.h' line='661' column='1'/>
+ <var-decl name='TypeVar' type-id='type-id-668' visibility='default' filepath='./Include/internal/pycore_ast.h' line='661' column='1'/>
</data-member>
<data-member access='public'>
- <var-decl name='ParamSpec' type-id='type-id-670' visibility='default' filepath='./Include/internal/pycore_ast.h' line='666' column='1'/>
+ <var-decl name='ParamSpec' type-id='type-id-669' visibility='default' filepath='./Include/internal/pycore_ast.h' line='666' column='1'/>
</data-member>
<data-member access='public'>
- <var-decl name='TypeVarTuple' type-id='type-id-670' visibility='default' filepath='./Include/internal/pycore_ast.h' line='671' column='1'/>
+ <var-decl name='TypeVarTuple' type-id='type-id-669' visibility='default' filepath='./Include/internal/pycore_ast.h' line='671' column='1'/>
</data-member>
</union-decl>
- <class-decl name='__anonymous_struct__3' size-in-bits='192' is-struct='yes' is-anonymous='yes' visibility='default' filepath='./Include/internal/pycore_ast.h' line='657' column='1' id='type-id-669'>
+ <class-decl name='__anonymous_struct__3' size-in-bits='192' is-struct='yes' is-anonymous='yes' visibility='default' filepath='./Include/internal/pycore_ast.h' line='657' column='1' id='type-id-668'>
<data-member access='public' layout-offset-in-bits='0'>
- <var-decl name='name' type-id='type-id-633' visibility='default' filepath='./Include/internal/pycore_ast.h' line='658' column='1'/>
+ <var-decl name='name' type-id='type-id-632' visibility='default' filepath='./Include/internal/pycore_ast.h' line='658' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='64'>
- <var-decl name='bound' type-id='type-id-610' visibility='default' filepath='./Include/internal/pycore_ast.h' line='659' column='1'/>
+ <var-decl name='bound' type-id='type-id-609' visibility='default' filepath='./Include/internal/pycore_ast.h' line='659' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='128'>
- <var-decl name='default_value' type-id='type-id-610' visibility='default' filepath='./Include/internal/pycore_ast.h' line='660' column='1'/>
+ <var-decl name='default_value' type-id='type-id-609' visibility='default' filepath='./Include/internal/pycore_ast.h' line='660' column='1'/>
</data-member>
</class-decl>
- <class-decl name='__anonymous_struct__4' size-in-bits='128' is-struct='yes' is-anonymous='yes' visibility='default' filepath='./Include/internal/pycore_ast.h' line='663' column='1' id='type-id-670'>
+ <class-decl name='__anonymous_struct__4' size-in-bits='128' is-struct='yes' is-anonymous='yes' visibility='default' filepath='./Include/internal/pycore_ast.h' line='663' column='1' id='type-id-669'>
<data-member access='public' layout-offset-in-bits='0'>
- <var-decl name='name' type-id='type-id-633' visibility='default' filepath='./Include/internal/pycore_ast.h' line='664' column='1'/>
+ <var-decl name='name' type-id='type-id-632' visibility='default' filepath='./Include/internal/pycore_ast.h' line='664' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='64'>
- <var-decl name='default_value' type-id='type-id-610' visibility='default' filepath='./Include/internal/pycore_ast.h' line='665' column='1'/>
+ <var-decl name='default_value' type-id='type-id-609' visibility='default' filepath='./Include/internal/pycore_ast.h' line='665' column='1'/>
</data-member>
</class-decl>
- <pointer-type-def type-id='type-id-569' size-in-bits='64' id='type-id-328'/>
- <pointer-type-def type-id='type-id-648' size-in-bits='64' id='type-id-579'/>
- <pointer-type-def type-id='type-id-645' size-in-bits='64' id='type-id-578'/>
- <pointer-type-def type-id='type-id-650' size-in-bits='64' id='type-id-581'/>
- <pointer-type-def type-id='type-id-602' size-in-bits='64' id='type-id-575'/>
- <pointer-type-def type-id='type-id-652' size-in-bits='64' id='type-id-582'/>
- <pointer-type-def type-id='type-id-613' size-in-bits='64' id='type-id-577'/>
- <pointer-type-def type-id='type-id-663' size-in-bits='64' id='type-id-583'/>
- <pointer-type-def type-id='type-id-667' size-in-bits='64' id='type-id-584'/>
+ <pointer-type-def type-id='type-id-568' size-in-bits='64' id='type-id-328'/>
+ <pointer-type-def type-id='type-id-647' size-in-bits='64' id='type-id-578'/>
+ <pointer-type-def type-id='type-id-644' size-in-bits='64' id='type-id-577'/>
<pointer-type-def type-id='type-id-649' size-in-bits='64' id='type-id-580'/>
- <pointer-type-def type-id='type-id-589' size-in-bits='64' id='type-id-642'/>
- <pointer-type-def type-id='type-id-587' size-in-bits='64' id='type-id-641'/>
- <pointer-type-def type-id='type-id-571' size-in-bits='64' id='type-id-671'/>
- <pointer-type-def type-id='type-id-573' size-in-bits='64' id='type-id-643'/>
- <pointer-type-def type-id='type-id-593' size-in-bits='64' id='type-id-640'/>
- <pointer-type-def type-id='type-id-595' size-in-bits='64' id='type-id-661'/>
- <pointer-type-def type-id='type-id-585' size-in-bits='64' id='type-id-608'/>
- <pointer-type-def type-id='type-id-597' size-in-bits='64' id='type-id-609'/>
- <pointer-type-def type-id='type-id-599' size-in-bits='64' id='type-id-636'/>
- <pointer-type-def type-id='type-id-591' size-in-bits='64' id='type-id-639'/>
- <class-decl name='tok_state' size-in-bits='138176' is-struct='yes' visibility='default' filepath='Parser/lexer/state.h' line='65' column='1' id='type-id-672'>
+ <pointer-type-def type-id='type-id-601' size-in-bits='64' id='type-id-574'/>
+ <pointer-type-def type-id='type-id-651' size-in-bits='64' id='type-id-581'/>
+ <pointer-type-def type-id='type-id-612' size-in-bits='64' id='type-id-576'/>
+ <pointer-type-def type-id='type-id-662' size-in-bits='64' id='type-id-582'/>
+ <pointer-type-def type-id='type-id-666' size-in-bits='64' id='type-id-583'/>
+ <pointer-type-def type-id='type-id-648' size-in-bits='64' id='type-id-579'/>
+ <pointer-type-def type-id='type-id-588' size-in-bits='64' id='type-id-641'/>
+ <pointer-type-def type-id='type-id-586' size-in-bits='64' id='type-id-640'/>
+ <pointer-type-def type-id='type-id-570' size-in-bits='64' id='type-id-670'/>
+ <pointer-type-def type-id='type-id-572' size-in-bits='64' id='type-id-642'/>
+ <pointer-type-def type-id='type-id-592' size-in-bits='64' id='type-id-639'/>
+ <pointer-type-def type-id='type-id-594' size-in-bits='64' id='type-id-660'/>
+ <pointer-type-def type-id='type-id-584' size-in-bits='64' id='type-id-607'/>
+ <pointer-type-def type-id='type-id-596' size-in-bits='64' id='type-id-608'/>
+ <pointer-type-def type-id='type-id-598' size-in-bits='64' id='type-id-635'/>
+ <pointer-type-def type-id='type-id-590' size-in-bits='64' id='type-id-638'/>
+ <class-decl name='tok_state' size-in-bits='138176' is-struct='yes' visibility='default' filepath='Parser/lexer/state.h' line='65' column='1' id='type-id-671'>
<data-member access='public' layout-offset-in-bits='0'>
<var-decl name='buf' type-id='type-id-17' visibility='default' filepath='Parser/lexer/state.h' line='68' column='1'/>
</data-member>
@@ -11629,7 +11620,7 @@
<var-decl name='indent' type-id='type-id-5' visibility='default' filepath='Parser/lexer/state.h' line='80' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='704'>
- <var-decl name='indstack' type-id='type-id-673' visibility='default' filepath='Parser/lexer/state.h' line='81' column='1'/>
+ <var-decl name='indstack' type-id='type-id-672' visibility='default' filepath='Parser/lexer/state.h' line='81' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='3904'>
<var-decl name='atbol' type-id='type-id-5' visibility='default' filepath='Parser/lexer/state.h' line='82' column='1'/>
@@ -11659,22 +11650,22 @@
<var-decl name='level' type-id='type-id-5' visibility='default' filepath='Parser/lexer/state.h' line='90' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='4256'>
- <var-decl name='parenstack' type-id='type-id-674' visibility='default' filepath='Parser/lexer/state.h' line='92' column='1'/>
+ <var-decl name='parenstack' type-id='type-id-673' visibility='default' filepath='Parser/lexer/state.h' line='92' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='5856'>
- <var-decl name='parenlinenostack' type-id='type-id-675' visibility='default' filepath='Parser/lexer/state.h' line='93' column='1'/>
+ <var-decl name='parenlinenostack' type-id='type-id-674' visibility='default' filepath='Parser/lexer/state.h' line='93' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='12256'>
- <var-decl name='parencolstack' type-id='type-id-675' visibility='default' filepath='Parser/lexer/state.h' line='94' column='1'/>
+ <var-decl name='parencolstack' type-id='type-id-674' visibility='default' filepath='Parser/lexer/state.h' line='94' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='18688'>
<var-decl name='filename' type-id='type-id-4' visibility='default' filepath='Parser/lexer/state.h' line='95' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='18752'>
- <var-decl name='altindstack' type-id='type-id-673' visibility='default' filepath='Parser/lexer/state.h' line='97' column='1'/>
+ <var-decl name='altindstack' type-id='type-id-672' visibility='default' filepath='Parser/lexer/state.h' line='97' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='21952'>
- <var-decl name='decoding_state' type-id='type-id-676' visibility='default' filepath='Parser/lexer/state.h' line='99' column='1'/>
+ <var-decl name='decoding_state' type-id='type-id-675' visibility='default' filepath='Parser/lexer/state.h' line='99' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='21984'>
<var-decl name='decoding_erred' type-id='type-id-5' visibility='default' filepath='Parser/lexer/state.h' line='100' column='1'/>
@@ -11713,16 +11704,16 @@
<var-decl name='type_comments' type-id='type-id-5' visibility='default' filepath='Parser/lexer/state.h' line='114' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='22688'>
- <var-decl name='interactive_underflow' type-id='type-id-677' visibility='default' filepath='Parser/lexer/state.h' line='117' column='1'/>
+ <var-decl name='interactive_underflow' type-id='type-id-676' visibility='default' filepath='Parser/lexer/state.h' line='117' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='22720'>
- <var-decl name='underflow' type-id='type-id-678' visibility='default' filepath='Parser/lexer/state.h' line='118' column='1'/>
+ <var-decl name='underflow' type-id='type-id-677' visibility='default' filepath='Parser/lexer/state.h' line='118' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='22784'>
<var-decl name='report_warnings' type-id='type-id-5' visibility='default' filepath='Parser/lexer/state.h' line='120' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='22848'>
- <var-decl name='tok_mode_stack' type-id='type-id-679' visibility='default' filepath='Parser/lexer/state.h' line='122' column='1'/>
+ <var-decl name='tok_mode_stack' type-id='type-id-678' visibility='default' filepath='Parser/lexer/state.h' line='122' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='138048'>
<var-decl name='tok_mode_stack_index' type-id='type-id-5' visibility='default' filepath='Parser/lexer/state.h' line='123' column='1'/>
@@ -11765,214 +11756,214 @@
</function-decl>
<function-decl name='_Py_asdl_generic_seq_new' filepath='./Include/internal/pycore_asdl.h' line='47' column='1' visibility='default' binding='global' size-in-bits='64'>
<parameter type-id='type-id-7'/>
- <parameter type-id='type-id-680'/>
- <return type-id='type-id-671'/>
+ <parameter type-id='type-id-679'/>
+ <return type-id='type-id-670'/>
</function-decl>
<function-decl name='_Py_asdl_identifier_seq_new' filepath='./Include/internal/pycore_asdl.h' line='48' column='1' visibility='default' binding='global' size-in-bits='64'>
<parameter type-id='type-id-7'/>
- <parameter type-id='type-id-680'/>
- <return type-id='type-id-643'/>
+ <parameter type-id='type-id-679'/>
+ <return type-id='type-id-642'/>
</function-decl>
<function-decl name='_Py_asdl_int_seq_new' filepath='./Include/internal/pycore_asdl.h' line='49' column='1' visibility='default' binding='global' size-in-bits='64'>
<parameter type-id='type-id-7'/>
- <parameter type-id='type-id-680'/>
- <return type-id='type-id-681'/>
+ <parameter type-id='type-id-679'/>
+ <return type-id='type-id-680'/>
</function-decl>
<function-decl name='_Py_asdl_expr_seq_new' filepath='./Include/internal/pycore_ast.h' line='76' column='1' visibility='default' binding='global' size-in-bits='64'>
<parameter type-id='type-id-7'/>
- <parameter type-id='type-id-680'/>
- <return type-id='type-id-611'/>
+ <parameter type-id='type-id-679'/>
+ <return type-id='type-id-610'/>
</function-decl>
<function-decl name='_Py_asdl_arg_seq_new' filepath='./Include/internal/pycore_ast.h' line='106' column='1' visibility='default' binding='global' size-in-bits='64'>
<parameter type-id='type-id-7'/>
- <parameter type-id='type-id-680'/>
- <return type-id='type-id-682'/>
+ <parameter type-id='type-id-679'/>
+ <return type-id='type-id-681'/>
</function-decl>
<function-decl name='_Py_asdl_keyword_seq_new' filepath='./Include/internal/pycore_ast.h' line='113' column='1' visibility='default' binding='global' size-in-bits='64'>
<parameter type-id='type-id-7'/>
- <parameter type-id='type-id-680'/>
- <return type-id='type-id-637'/>
+ <parameter type-id='type-id-679'/>
+ <return type-id='type-id-636'/>
</function-decl>
<function-decl name='_Py_asdl_pattern_seq_new' filepath='./Include/internal/pycore_ast.h' line='142' column='1' visibility='default' binding='global' size-in-bits='64'>
<parameter type-id='type-id-7'/>
- <parameter type-id='type-id-680'/>
- <return type-id='type-id-661'/>
+ <parameter type-id='type-id-679'/>
+ <return type-id='type-id-660'/>
</function-decl>
<function-decl name='_Py_asdl_type_ignore_seq_new' filepath='./Include/internal/pycore_ast.h' line='149' column='1' visibility='default' binding='global' size-in-bits='64'>
<parameter type-id='type-id-7'/>
- <parameter type-id='type-id-680'/>
- <return type-id='type-id-609'/>
+ <parameter type-id='type-id-679'/>
+ <return type-id='type-id-608'/>
</function-decl>
<function-decl name='_PyAST_Module' filepath='./Include/internal/pycore_ast.h' line='682' column='1' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-607'/>
<parameter type-id='type-id-608'/>
- <parameter type-id='type-id-609'/>
- <parameter type-id='type-id-680'/>
- <return type-id='type-id-576'/>
+ <parameter type-id='type-id-679'/>
+ <return type-id='type-id-575'/>
</function-decl>
<function-decl name='_PyAST_FunctionDef' filepath='./Include/internal/pycore_ast.h' line='688' column='1' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-632'/>
<parameter type-id='type-id-633'/>
- <parameter type-id='type-id-634'/>
- <parameter type-id='type-id-608'/>
- <parameter type-id='type-id-611'/>
+ <parameter type-id='type-id-607'/>
<parameter type-id='type-id-610'/>
+ <parameter type-id='type-id-609'/>
+ <parameter type-id='type-id-634'/>
<parameter type-id='type-id-635'/>
- <parameter type-id='type-id-636'/>
<parameter type-id='type-id-5'/>
<parameter type-id='type-id-5'/>
<parameter type-id='type-id-5'/>
<parameter type-id='type-id-5'/>
- <parameter type-id='type-id-680'/>
- <return type-id='type-id-560'/>
+ <parameter type-id='type-id-679'/>
+ <return type-id='type-id-559'/>
</function-decl>
<function-decl name='_PyAST_AsyncFunctionDef' filepath='./Include/internal/pycore_ast.h' line='693' column='1' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-632'/>
<parameter type-id='type-id-633'/>
- <parameter type-id='type-id-634'/>
- <parameter type-id='type-id-608'/>
- <parameter type-id='type-id-611'/>
+ <parameter type-id='type-id-607'/>
<parameter type-id='type-id-610'/>
+ <parameter type-id='type-id-609'/>
+ <parameter type-id='type-id-634'/>
<parameter type-id='type-id-635'/>
- <parameter type-id='type-id-636'/>
<parameter type-id='type-id-5'/>
<parameter type-id='type-id-5'/>
<parameter type-id='type-id-5'/>
<parameter type-id='type-id-5'/>
- <parameter type-id='type-id-680'/>
- <return type-id='type-id-560'/>
+ <parameter type-id='type-id-679'/>
+ <return type-id='type-id-559'/>
</function-decl>
<function-decl name='_PyAST_ClassDef' filepath='./Include/internal/pycore_ast.h' line='699' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-633'/>
- <parameter type-id='type-id-611'/>
- <parameter type-id='type-id-637'/>
- <parameter type-id='type-id-608'/>
- <parameter type-id='type-id-611'/>
+ <parameter type-id='type-id-632'/>
+ <parameter type-id='type-id-610'/>
<parameter type-id='type-id-636'/>
+ <parameter type-id='type-id-607'/>
+ <parameter type-id='type-id-610'/>
+ <parameter type-id='type-id-635'/>
<parameter type-id='type-id-5'/>
<parameter type-id='type-id-5'/>
<parameter type-id='type-id-5'/>
<parameter type-id='type-id-5'/>
- <parameter type-id='type-id-680'/>
- <return type-id='type-id-560'/>
+ <parameter type-id='type-id-679'/>
+ <return type-id='type-id-559'/>
</function-decl>
<function-decl name='_PyAST_Call' filepath='./Include/internal/pycore_ast.h' line='817' column='1' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-609'/>
<parameter type-id='type-id-610'/>
- <parameter type-id='type-id-611'/>
- <parameter type-id='type-id-637'/>
+ <parameter type-id='type-id-636'/>
<parameter type-id='type-id-5'/>
<parameter type-id='type-id-5'/>
<parameter type-id='type-id-5'/>
<parameter type-id='type-id-5'/>
- <parameter type-id='type-id-680'/>
- <return type-id='type-id-610'/>
+ <parameter type-id='type-id-679'/>
+ <return type-id='type-id-609'/>
</function-decl>
<function-decl name='_PyAST_FormattedValue' filepath='./Include/internal/pycore_ast.h' line='820' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-610'/>
+ <parameter type-id='type-id-609'/>
<parameter type-id='type-id-5'/>
- <parameter type-id='type-id-610'/>
+ <parameter type-id='type-id-609'/>
<parameter type-id='type-id-5'/>
<parameter type-id='type-id-5'/>
<parameter type-id='type-id-5'/>
<parameter type-id='type-id-5'/>
- <parameter type-id='type-id-680'/>
- <return type-id='type-id-610'/>
+ <parameter type-id='type-id-679'/>
+ <return type-id='type-id-609'/>
</function-decl>
<function-decl name='_PyAST_JoinedStr' filepath='./Include/internal/pycore_ast.h' line='823' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-611'/>
+ <parameter type-id='type-id-610'/>
<parameter type-id='type-id-5'/>
<parameter type-id='type-id-5'/>
<parameter type-id='type-id-5'/>
<parameter type-id='type-id-5'/>
- <parameter type-id='type-id-680'/>
- <return type-id='type-id-610'/>
+ <parameter type-id='type-id-679'/>
+ <return type-id='type-id-609'/>
</function-decl>
<function-decl name='_PyAST_Attribute' filepath='./Include/internal/pycore_ast.h' line='828' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-610'/>
- <parameter type-id='type-id-633'/>
- <parameter type-id='type-id-683'/>
+ <parameter type-id='type-id-609'/>
+ <parameter type-id='type-id-632'/>
+ <parameter type-id='type-id-682'/>
<parameter type-id='type-id-5'/>
<parameter type-id='type-id-5'/>
<parameter type-id='type-id-5'/>
<parameter type-id='type-id-5'/>
- <parameter type-id='type-id-680'/>
- <return type-id='type-id-610'/>
+ <parameter type-id='type-id-679'/>
+ <return type-id='type-id-609'/>
</function-decl>
<function-decl name='_PyAST_Subscript' filepath='./Include/internal/pycore_ast.h' line='831' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-610'/>
- <parameter type-id='type-id-610'/>
- <parameter type-id='type-id-683'/>
+ <parameter type-id='type-id-609'/>
+ <parameter type-id='type-id-609'/>
+ <parameter type-id='type-id-682'/>
<parameter type-id='type-id-5'/>
<parameter type-id='type-id-5'/>
<parameter type-id='type-id-5'/>
<parameter type-id='type-id-5'/>
- <parameter type-id='type-id-680'/>
- <return type-id='type-id-610'/>
+ <parameter type-id='type-id-679'/>
+ <return type-id='type-id-609'/>
</function-decl>
<function-decl name='_PyAST_Starred' filepath='./Include/internal/pycore_ast.h' line='834' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-610'/>
- <parameter type-id='type-id-683'/>
+ <parameter type-id='type-id-609'/>
+ <parameter type-id='type-id-682'/>
<parameter type-id='type-id-5'/>
<parameter type-id='type-id-5'/>
<parameter type-id='type-id-5'/>
<parameter type-id='type-id-5'/>
- <parameter type-id='type-id-680'/>
- <return type-id='type-id-610'/>
+ <parameter type-id='type-id-679'/>
+ <return type-id='type-id-609'/>
</function-decl>
<function-decl name='_PyAST_List' filepath='./Include/internal/pycore_ast.h' line='840' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-611'/>
- <parameter type-id='type-id-683'/>
+ <parameter type-id='type-id-610'/>
+ <parameter type-id='type-id-682'/>
<parameter type-id='type-id-5'/>
<parameter type-id='type-id-5'/>
<parameter type-id='type-id-5'/>
<parameter type-id='type-id-5'/>
- <parameter type-id='type-id-680'/>
- <return type-id='type-id-610'/>
+ <parameter type-id='type-id-679'/>
+ <return type-id='type-id-609'/>
</function-decl>
<function-decl name='_PyAST_Tuple' filepath='./Include/internal/pycore_ast.h' line='843' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-611'/>
- <parameter type-id='type-id-683'/>
+ <parameter type-id='type-id-610'/>
+ <parameter type-id='type-id-682'/>
<parameter type-id='type-id-5'/>
<parameter type-id='type-id-5'/>
<parameter type-id='type-id-5'/>
<parameter type-id='type-id-5'/>
- <parameter type-id='type-id-680'/>
- <return type-id='type-id-610'/>
+ <parameter type-id='type-id-679'/>
+ <return type-id='type-id-609'/>
</function-decl>
<function-decl name='_PyAST_arguments' filepath='./Include/internal/pycore_ast.h' line='856' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-682'/>
- <parameter type-id='type-id-682'/>
- <parameter type-id='type-id-684'/>
- <parameter type-id='type-id-682'/>
- <parameter type-id='type-id-611'/>
- <parameter type-id='type-id-684'/>
- <parameter type-id='type-id-611'/>
- <parameter type-id='type-id-680'/>
- <return type-id='type-id-634'/>
+ <parameter type-id='type-id-681'/>
+ <parameter type-id='type-id-681'/>
+ <parameter type-id='type-id-683'/>
+ <parameter type-id='type-id-681'/>
+ <parameter type-id='type-id-610'/>
+ <parameter type-id='type-id-683'/>
+ <parameter type-id='type-id-610'/>
+ <parameter type-id='type-id-679'/>
+ <return type-id='type-id-633'/>
</function-decl>
<function-decl name='_PyAST_arg' filepath='./Include/internal/pycore_ast.h' line='860' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-633'/>
- <parameter type-id='type-id-610'/>
- <parameter type-id='type-id-635'/>
+ <parameter type-id='type-id-632'/>
+ <parameter type-id='type-id-609'/>
+ <parameter type-id='type-id-634'/>
<parameter type-id='type-id-5'/>
<parameter type-id='type-id-5'/>
<parameter type-id='type-id-5'/>
<parameter type-id='type-id-5'/>
- <parameter type-id='type-id-680'/>
- <return type-id='type-id-684'/>
+ <parameter type-id='type-id-679'/>
+ <return type-id='type-id-683'/>
</function-decl>
<function-decl name='_PyAST_alias' filepath='./Include/internal/pycore_ast.h' line='866' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-633'/>
- <parameter type-id='type-id-633'/>
+ <parameter type-id='type-id-632'/>
+ <parameter type-id='type-id-632'/>
<parameter type-id='type-id-5'/>
<parameter type-id='type-id-5'/>
<parameter type-id='type-id-5'/>
<parameter type-id='type-id-5'/>
- <parameter type-id='type-id-680'/>
- <return type-id='type-id-552'/>
+ <parameter type-id='type-id-679'/>
+ <return type-id='type-id-551'/>
</function-decl>
<function-decl name='_PyAST_TypeIgnore' filepath='./Include/internal/pycore_ast.h' line='897' column='1' visibility='default' binding='global' size-in-bits='64'>
<parameter type-id='type-id-5'/>
- <parameter type-id='type-id-635'/>
- <parameter type-id='type-id-680'/>
- <return type-id='type-id-562'/>
+ <parameter type-id='type-id-634'/>
+ <parameter type-id='type-id-679'/>
+ <return type-id='type-id-561'/>
</function-decl>
<function-decl name='PyUnicode_FromFormat' mangled-name='PyUnicode_FromFormat' filepath='./Include/unicodeobject.h' line='241' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_FromFormat'>
<parameter type-id='type-id-6'/>
@@ -11985,36 +11976,36 @@
<return type-id='type-id-17'/>
</function-decl>
<function-decl name='_PyPegen_new_identifier' filepath='Parser/pegen.h' line='296' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-685'/>
+ <parameter type-id='type-id-684'/>
<parameter type-id='type-id-6'/>
<return type-id='type-id-4'/>
</function-decl>
<function-decl name='_PyPegen_parse_string' filepath='Parser/string_parser.h' line='8' column='1' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-684'/>
<parameter type-id='type-id-685'/>
- <parameter type-id='type-id-686'/>
<return type-id='type-id-4'/>
</function-decl>
<function-decl name='_PyPegen_decode_string' filepath='Parser/string_parser.h' line='9' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-685'/>
+ <parameter type-id='type-id-684'/>
<parameter type-id='type-id-5'/>
<parameter type-id='type-id-6'/>
<parameter type-id='type-id-21'/>
- <parameter type-id='type-id-686'/>
+ <parameter type-id='type-id-685'/>
<return type-id='type-id-4'/>
</function-decl>
- <pointer-type-def type-id='type-id-687' size-in-bits='64' id='type-id-685'/>
- <class-decl name='__anonymous_struct__7' size-in-bits='64' is-struct='yes' is-anonymous='yes' visibility='default' filepath='./Include/internal/pycore_ast.h' line='228' column='1' id='type-id-617'>
+ <pointer-type-def type-id='type-id-686' size-in-bits='64' id='type-id-684'/>
+ <class-decl name='__anonymous_struct__7' size-in-bits='64' is-struct='yes' is-anonymous='yes' visibility='default' filepath='./Include/internal/pycore_ast.h' line='228' column='1' id='type-id-616'>
<data-member access='public' layout-offset-in-bits='0'>
- <var-decl name='value' type-id='type-id-610' visibility='default' filepath='./Include/internal/pycore_ast.h' line='229' column='1'/>
+ <var-decl name='value' type-id='type-id-609' visibility='default' filepath='./Include/internal/pycore_ast.h' line='229' column='1'/>
</data-member>
</class-decl>
- <typedef-decl name='Parser' type-id='type-id-688' filepath='Parser/pegen.h' line='81' column='1' id='type-id-687'/>
- <class-decl name='Parser' size-in-bits='1280' is-struct='yes' naming-typedef-id='type-id-687' visibility='default' filepath='Parser/pegen.h' line='58' column='1' id='type-id-688'>
+ <typedef-decl name='Parser' type-id='type-id-687' filepath='Parser/pegen.h' line='81' column='1' id='type-id-686'/>
+ <class-decl name='Parser' size-in-bits='1280' is-struct='yes' naming-typedef-id='type-id-686' visibility='default' filepath='Parser/pegen.h' line='58' column='1' id='type-id-687'>
<data-member access='public' layout-offset-in-bits='0'>
- <var-decl name='tok' type-id='type-id-689' visibility='default' filepath='Parser/pegen.h' line='59' column='1'/>
+ <var-decl name='tok' type-id='type-id-688' visibility='default' filepath='Parser/pegen.h' line='59' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='64'>
- <var-decl name='tokens' type-id='type-id-690' visibility='default' filepath='Parser/pegen.h' line='60' column='1'/>
+ <var-decl name='tokens' type-id='type-id-689' visibility='default' filepath='Parser/pegen.h' line='60' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='128'>
<var-decl name='mark' type-id='type-id-5' visibility='default' filepath='Parser/pegen.h' line='61' column='1'/>
@@ -12026,10 +12017,10 @@
<var-decl name='size' type-id='type-id-5' visibility='default' filepath='Parser/pegen.h' line='62' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='256'>
- <var-decl name='arena' type-id='type-id-680' visibility='default' filepath='Parser/pegen.h' line='63' column='1'/>
+ <var-decl name='arena' type-id='type-id-679' visibility='default' filepath='Parser/pegen.h' line='63' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='320'>
- <var-decl name='keywords' type-id='type-id-691' visibility='default' filepath='Parser/pegen.h' line='64' column='1'/>
+ <var-decl name='keywords' type-id='type-id-690' visibility='default' filepath='Parser/pegen.h' line='64' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='384'>
<var-decl name='soft_keywords' type-id='type-id-246' visibility='default' filepath='Parser/pegen.h' line='65' column='1'/>
@@ -12065,10 +12056,10 @@
<var-decl name='feature_version' type-id='type-id-5' visibility='default' filepath='Parser/pegen.h' line='75' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='896'>
- <var-decl name='type_ignore_comments' type-id='type-id-692' visibility='default' filepath='Parser/pegen.h' line='76' column='1'/>
+ <var-decl name='type_ignore_comments' type-id='type-id-691' visibility='default' filepath='Parser/pegen.h' line='76' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='1088'>
- <var-decl name='known_err_token' type-id='type-id-686' visibility='default' filepath='Parser/pegen.h' line='77' column='1'/>
+ <var-decl name='known_err_token' type-id='type-id-685' visibility='default' filepath='Parser/pegen.h' line='77' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='1152'>
<var-decl name='level' type-id='type-id-5' visibility='default' filepath='Parser/pegen.h' line='78' column='1'/>
@@ -12080,9 +12071,9 @@
<var-decl name='debug' type-id='type-id-5' visibility='default' filepath='Parser/pegen.h' line='80' column='1'/>
</data-member>
</class-decl>
- <pointer-type-def type-id='type-id-672' size-in-bits='64' id='type-id-689'/>
+ <pointer-type-def type-id='type-id-671' size-in-bits='64' id='type-id-688'/>
</abi-instr>
- <abi-instr address-size='64' path='Parser/lexer/lexer.c' comp-dir-path='/src' language='LANG_C11'>
+ <abi-instr address-size='64' path='Parser/lexer/lexer.c' comp-dir-path='/home/runner/work/cpython/cpython' language='LANG_C11'>
<function-decl name='_Py_FatalErrorFunc' mangled-name='_Py_FatalErrorFunc' filepath='./Include/cpython/pyerrors.h' line='123' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_FatalErrorFunc'>
<parameter type-id='type-id-6'/>
<parameter type-id='type-id-6'/>
@@ -12119,13 +12110,13 @@
<return type-id='type-id-29'/>
</function-decl>
<function-decl name='_PyTokenizer_syntaxerror' filepath='Parser/lexer/../tokenizer/helpers.h' line='12' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-689'/>
+ <parameter type-id='type-id-688'/>
<parameter type-id='type-id-6'/>
<parameter is-variadic='yes'/>
<return type-id='type-id-5'/>
</function-decl>
<function-decl name='_PyTokenizer_syntaxerror_known_range' filepath='Parser/lexer/../tokenizer/helpers.h' line='13' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-689'/>
+ <parameter type-id='type-id-688'/>
<parameter type-id='type-id-5'/>
<parameter type-id='type-id-5'/>
<parameter type-id='type-id-6'/>
@@ -12133,24 +12124,24 @@
<return type-id='type-id-5'/>
</function-decl>
<function-decl name='_PyTokenizer_indenterror' filepath='Parser/lexer/../tokenizer/helpers.h' line='14' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-689'/>
+ <parameter type-id='type-id-688'/>
<return type-id='type-id-5'/>
</function-decl>
<function-decl name='_PyTokenizer_warn_invalid_escape_sequence' filepath='Parser/lexer/../tokenizer/helpers.h' line='15' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-689'/>
+ <parameter type-id='type-id-688'/>
<parameter type-id='type-id-5'/>
<return type-id='type-id-5'/>
</function-decl>
<function-decl name='_PyTokenizer_parser_warn' filepath='Parser/lexer/../tokenizer/helpers.h' line='16' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-689'/>
+ <parameter type-id='type-id-688'/>
<parameter type-id='type-id-4'/>
<parameter type-id='type-id-6'/>
<parameter is-variadic='yes'/>
<return type-id='type-id-5'/>
</function-decl>
<function-decl name='_PyLexer_type_comment_token_setup' filepath='Parser/lexer/state.h' line='132' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-689'/>
- <parameter type-id='type-id-693'/>
+ <parameter type-id='type-id-688'/>
+ <parameter type-id='type-id-692'/>
<parameter type-id='type-id-5'/>
<parameter type-id='type-id-5'/>
<parameter type-id='type-id-5'/>
@@ -12159,16 +12150,17 @@
<return type-id='type-id-5'/>
</function-decl>
<function-decl name='_PyLexer_token_setup' filepath='Parser/lexer/state.h' line='134' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-689'/>
- <parameter type-id='type-id-693'/>
+ <parameter type-id='type-id-688'/>
+ <parameter type-id='type-id-692'/>
<parameter type-id='type-id-5'/>
<parameter type-id='type-id-6'/>
<parameter type-id='type-id-6'/>
<return type-id='type-id-5'/>
</function-decl>
</abi-instr>
- <abi-instr address-size='64' path='Parser/myreadline.c' comp-dir-path='/src' language='LANG_C11'>
+ <abi-instr address-size='64' path='Parser/myreadline.c' comp-dir-path='/home/runner/work/cpython/cpython' language='LANG_C11'>
<qualified-type-def type-id='type-id-55' restrict='yes' id='type-id-401'/>
+ <pointer-type-def type-id='type-id-693' size-in-bits='64' id='type-id-508'/>
<pointer-type-def type-id='type-id-694' size-in-bits='64' id='type-id-695'/>
<qualified-type-def type-id='type-id-17' restrict='yes' id='type-id-179'/>
<pointer-type-def type-id='type-id-696' size-in-bits='64' id='type-id-697'/>
@@ -12179,6 +12171,14 @@
<parameter type-id='type-id-26'/>
<return type-id='type-id-3'/>
</function-decl>
+ <function-decl name='PyMutex_Lock' mangled-name='PyMutex_Lock' filepath='./Include/cpython/lock.h' line='34' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyMutex_Lock'>
+ <parameter type-id='type-id-508'/>
+ <return type-id='type-id-3'/>
+ </function-decl>
+ <function-decl name='PyMutex_Unlock' mangled-name='PyMutex_Unlock' filepath='./Include/cpython/lock.h' line='37' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyMutex_Unlock'>
+ <parameter type-id='type-id-508'/>
+ <return type-id='type-id-3'/>
+ </function-decl>
<var-decl name='PyOS_ReadlineFunctionPointer' type-id='type-id-695' mangled-name='PyOS_ReadlineFunctionPointer' visibility='default' filepath='./Include/cpython/pythonrun.h' line='96' column='1' elf-symbol-id='PyOS_ReadlineFunctionPointer'/>
<function-decl name='_PyOS_InterruptOccurred' filepath='./Include/internal/pycore_pystate.h' line='261' column='1' visibility='default' binding='global' size-in-bits='64'>
<parameter type-id='type-id-26'/>
@@ -12197,18 +12197,6 @@
<return type-id='type-id-3'/>
</function-decl>
<var-decl name='PyOS_InputHook' type-id='type-id-697' mangled-name='PyOS_InputHook' visibility='default' filepath='./Include/pythonrun.h' line='22' column='1' elf-symbol-id='PyOS_InputHook'/>
- <function-decl name='PyThread_allocate_lock' mangled-name='PyThread_allocate_lock' filepath='./Include/pythread.h' line='31' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyThread_allocate_lock'>
- <return type-id='type-id-698'/>
- </function-decl>
- <function-decl name='PyThread_acquire_lock' mangled-name='PyThread_acquire_lock' filepath='./Include/pythread.h' line='33' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyThread_acquire_lock'>
- <parameter type-id='type-id-698'/>
- <parameter type-id='type-id-5'/>
- <return type-id='type-id-5'/>
- </function-decl>
- <function-decl name='PyThread_release_lock' mangled-name='PyThread_release_lock' filepath='./Include/pythread.h' line='58' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyThread_release_lock'>
- <parameter type-id='type-id-698'/>
- <return type-id='type-id-3'/>
- </function-decl>
<function-decl name='fflush' filepath='/usr/include/stdio.h' line='230' column='1' visibility='default' binding='global' size-in-bits='64'>
<parameter type-id='type-id-55'/>
<return type-id='type-id-5'/>
@@ -12242,8 +12230,8 @@
<return type-id='type-id-5'/>
</function-type>
</abi-instr>
- <abi-instr address-size='64' path='Parser/parser.c' comp-dir-path='/src' language='LANG_C11'>
- <class-decl name='asdl_seq' size-in-bits='128' is-struct='yes' naming-typedef-id='type-id-699' visibility='default' filepath='./Include/internal/pycore_asdl.h' line='28' column='1' id='type-id-700'>
+ <abi-instr address-size='64' path='Parser/parser.c' comp-dir-path='/home/runner/work/cpython/cpython' language='LANG_C11'>
+ <class-decl name='asdl_seq' size-in-bits='128' is-struct='yes' naming-typedef-id='type-id-698' visibility='default' filepath='./Include/internal/pycore_asdl.h' line='28' column='1' id='type-id-699'>
<data-member access='public' layout-offset-in-bits='0'>
<var-decl name='size' type-id='type-id-7' visibility='default' filepath='./Include/internal/pycore_asdl.h' line='29' column='1'/>
</data-member>
@@ -12251,8 +12239,8 @@
<var-decl name='elements' type-id='type-id-260' visibility='default' filepath='./Include/internal/pycore_asdl.h' line='29' column='1'/>
</data-member>
</class-decl>
- <typedef-decl name='asdl_seq' type-id='type-id-700' filepath='./Include/internal/pycore_asdl.h' line='30' column='1' id='type-id-699'/>
- <enum-decl name='_cmpop' filepath='./Include/internal/pycore_ast.h' line='31' column='1' id='type-id-701'>
+ <typedef-decl name='asdl_seq' type-id='type-id-699' filepath='./Include/internal/pycore_asdl.h' line='30' column='1' id='type-id-698'/>
+ <enum-decl name='_cmpop' filepath='./Include/internal/pycore_ast.h' line='31' column='1' id='type-id-700'>
<underlying-type type-id='type-id-31'/>
<enumerator name='Eq' value='1'/>
<enumerator name='NotEq' value='2'/>
@@ -12265,71 +12253,71 @@
<enumerator name='In' value='9'/>
<enumerator name='NotIn' value='10'/>
</enum-decl>
- <typedef-decl name='cmpop_ty' type-id='type-id-701' filepath='./Include/internal/pycore_ast.h' line='32' column='1' id='type-id-702'/>
- <class-decl name='CmpopExprPair' size-in-bits='128' is-struct='yes' naming-typedef-id='type-id-703' visibility='default' filepath='Parser/pegen.h' line='83' column='1' id='type-id-704'>
+ <typedef-decl name='cmpop_ty' type-id='type-id-700' filepath='./Include/internal/pycore_ast.h' line='32' column='1' id='type-id-701'/>
+ <class-decl name='CmpopExprPair' size-in-bits='128' is-struct='yes' naming-typedef-id='type-id-702' visibility='default' filepath='Parser/pegen.h' line='83' column='1' id='type-id-703'>
<data-member access='public' layout-offset-in-bits='0'>
- <var-decl name='cmpop' type-id='type-id-702' visibility='default' filepath='Parser/pegen.h' line='84' column='1'/>
+ <var-decl name='cmpop' type-id='type-id-701' visibility='default' filepath='Parser/pegen.h' line='84' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='64'>
- <var-decl name='expr' type-id='type-id-610' visibility='default' filepath='Parser/pegen.h' line='85' column='1'/>
+ <var-decl name='expr' type-id='type-id-609' visibility='default' filepath='Parser/pegen.h' line='85' column='1'/>
</data-member>
</class-decl>
- <typedef-decl name='CmpopExprPair' type-id='type-id-704' filepath='Parser/pegen.h' line='86' column='1' id='type-id-703'/>
- <class-decl name='KeyValuePair' size-in-bits='128' is-struct='yes' naming-typedef-id='type-id-705' visibility='default' filepath='Parser/pegen.h' line='88' column='1' id='type-id-706'>
+ <typedef-decl name='CmpopExprPair' type-id='type-id-703' filepath='Parser/pegen.h' line='86' column='1' id='type-id-702'/>
+ <class-decl name='KeyValuePair' size-in-bits='128' is-struct='yes' naming-typedef-id='type-id-704' visibility='default' filepath='Parser/pegen.h' line='88' column='1' id='type-id-705'>
<data-member access='public' layout-offset-in-bits='0'>
- <var-decl name='key' type-id='type-id-610' visibility='default' filepath='Parser/pegen.h' line='89' column='1'/>
+ <var-decl name='key' type-id='type-id-609' visibility='default' filepath='Parser/pegen.h' line='89' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='64'>
- <var-decl name='value' type-id='type-id-610' visibility='default' filepath='Parser/pegen.h' line='90' column='1'/>
+ <var-decl name='value' type-id='type-id-609' visibility='default' filepath='Parser/pegen.h' line='90' column='1'/>
</data-member>
</class-decl>
- <typedef-decl name='KeyValuePair' type-id='type-id-706' filepath='Parser/pegen.h' line='91' column='1' id='type-id-705'/>
- <class-decl name='KeyPatternPair' size-in-bits='128' is-struct='yes' naming-typedef-id='type-id-707' visibility='default' filepath='Parser/pegen.h' line='93' column='1' id='type-id-708'>
+ <typedef-decl name='KeyValuePair' type-id='type-id-705' filepath='Parser/pegen.h' line='91' column='1' id='type-id-704'/>
+ <class-decl name='KeyPatternPair' size-in-bits='128' is-struct='yes' naming-typedef-id='type-id-706' visibility='default' filepath='Parser/pegen.h' line='93' column='1' id='type-id-707'>
<data-member access='public' layout-offset-in-bits='0'>
- <var-decl name='key' type-id='type-id-610' visibility='default' filepath='Parser/pegen.h' line='94' column='1'/>
+ <var-decl name='key' type-id='type-id-609' visibility='default' filepath='Parser/pegen.h' line='94' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='64'>
- <var-decl name='pattern' type-id='type-id-558' visibility='default' filepath='Parser/pegen.h' line='95' column='1'/>
+ <var-decl name='pattern' type-id='type-id-557' visibility='default' filepath='Parser/pegen.h' line='95' column='1'/>
</data-member>
</class-decl>
- <typedef-decl name='KeyPatternPair' type-id='type-id-708' filepath='Parser/pegen.h' line='96' column='1' id='type-id-707'/>
- <class-decl name='NameDefaultPair' size-in-bits='128' is-struct='yes' naming-typedef-id='type-id-709' visibility='default' filepath='Parser/pegen.h' line='98' column='1' id='type-id-710'>
+ <typedef-decl name='KeyPatternPair' type-id='type-id-707' filepath='Parser/pegen.h' line='96' column='1' id='type-id-706'/>
+ <class-decl name='NameDefaultPair' size-in-bits='128' is-struct='yes' naming-typedef-id='type-id-708' visibility='default' filepath='Parser/pegen.h' line='98' column='1' id='type-id-709'>
<data-member access='public' layout-offset-in-bits='0'>
- <var-decl name='arg' type-id='type-id-684' visibility='default' filepath='Parser/pegen.h' line='99' column='1'/>
+ <var-decl name='arg' type-id='type-id-683' visibility='default' filepath='Parser/pegen.h' line='99' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='64'>
- <var-decl name='value' type-id='type-id-610' visibility='default' filepath='Parser/pegen.h' line='100' column='1'/>
+ <var-decl name='value' type-id='type-id-609' visibility='default' filepath='Parser/pegen.h' line='100' column='1'/>
</data-member>
</class-decl>
- <typedef-decl name='NameDefaultPair' type-id='type-id-710' filepath='Parser/pegen.h' line='101' column='1' id='type-id-709'/>
- <class-decl name='SlashWithDefault' size-in-bits='128' is-struct='yes' naming-typedef-id='type-id-711' visibility='default' filepath='Parser/pegen.h' line='103' column='1' id='type-id-712'>
+ <typedef-decl name='NameDefaultPair' type-id='type-id-709' filepath='Parser/pegen.h' line='101' column='1' id='type-id-708'/>
+ <class-decl name='SlashWithDefault' size-in-bits='128' is-struct='yes' naming-typedef-id='type-id-710' visibility='default' filepath='Parser/pegen.h' line='103' column='1' id='type-id-711'>
<data-member access='public' layout-offset-in-bits='0'>
- <var-decl name='plain_names' type-id='type-id-682' visibility='default' filepath='Parser/pegen.h' line='104' column='1'/>
+ <var-decl name='plain_names' type-id='type-id-681' visibility='default' filepath='Parser/pegen.h' line='104' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='64'>
- <var-decl name='names_with_defaults' type-id='type-id-713' visibility='default' filepath='Parser/pegen.h' line='105' column='1'/>
+ <var-decl name='names_with_defaults' type-id='type-id-712' visibility='default' filepath='Parser/pegen.h' line='105' column='1'/>
</data-member>
</class-decl>
- <typedef-decl name='SlashWithDefault' type-id='type-id-712' filepath='Parser/pegen.h' line='106' column='1' id='type-id-711'/>
- <class-decl name='StarEtc' size-in-bits='192' is-struct='yes' naming-typedef-id='type-id-714' visibility='default' filepath='Parser/pegen.h' line='108' column='1' id='type-id-715'>
+ <typedef-decl name='SlashWithDefault' type-id='type-id-711' filepath='Parser/pegen.h' line='106' column='1' id='type-id-710'/>
+ <class-decl name='StarEtc' size-in-bits='192' is-struct='yes' naming-typedef-id='type-id-713' visibility='default' filepath='Parser/pegen.h' line='108' column='1' id='type-id-714'>
<data-member access='public' layout-offset-in-bits='0'>
- <var-decl name='vararg' type-id='type-id-684' visibility='default' filepath='Parser/pegen.h' line='109' column='1'/>
+ <var-decl name='vararg' type-id='type-id-683' visibility='default' filepath='Parser/pegen.h' line='109' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='64'>
- <var-decl name='kwonlyargs' type-id='type-id-713' visibility='default' filepath='Parser/pegen.h' line='110' column='1'/>
+ <var-decl name='kwonlyargs' type-id='type-id-712' visibility='default' filepath='Parser/pegen.h' line='110' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='128'>
- <var-decl name='kwarg' type-id='type-id-684' visibility='default' filepath='Parser/pegen.h' line='111' column='1'/>
+ <var-decl name='kwarg' type-id='type-id-683' visibility='default' filepath='Parser/pegen.h' line='111' column='1'/>
</data-member>
</class-decl>
- <typedef-decl name='StarEtc' type-id='type-id-715' filepath='Parser/pegen.h' line='112' column='1' id='type-id-714'/>
- <class-decl name='AugOperator' size-in-bits='32' is-struct='yes' naming-typedef-id='type-id-716' visibility='default' filepath='Parser/pegen.h' line='114' column='1' id='type-id-717'>
+ <typedef-decl name='StarEtc' type-id='type-id-714' filepath='Parser/pegen.h' line='112' column='1' id='type-id-713'/>
+ <class-decl name='AugOperator' size-in-bits='32' is-struct='yes' naming-typedef-id='type-id-715' visibility='default' filepath='Parser/pegen.h' line='114' column='1' id='type-id-716'>
<data-member access='public' layout-offset-in-bits='0'>
- <var-decl name='kind' type-id='type-id-638' visibility='default' filepath='Parser/pegen.h' line='114' column='1'/>
+ <var-decl name='kind' type-id='type-id-637' visibility='default' filepath='Parser/pegen.h' line='114' column='1'/>
</data-member>
</class-decl>
- <typedef-decl name='AugOperator' type-id='type-id-717' filepath='Parser/pegen.h' line='114' column='1' id='type-id-716'/>
- <class-decl name='KeywordOrStarred' size-in-bits='128' is-struct='yes' naming-typedef-id='type-id-718' visibility='default' filepath='Parser/pegen.h' line='115' column='1' id='type-id-719'>
+ <typedef-decl name='AugOperator' type-id='type-id-716' filepath='Parser/pegen.h' line='114' column='1' id='type-id-715'/>
+ <class-decl name='KeywordOrStarred' size-in-bits='128' is-struct='yes' naming-typedef-id='type-id-717' visibility='default' filepath='Parser/pegen.h' line='115' column='1' id='type-id-718'>
<data-member access='public' layout-offset-in-bits='0'>
<var-decl name='element' type-id='type-id-29' visibility='default' filepath='Parser/pegen.h' line='116' column='1'/>
</data-member>
@@ -12337,8 +12325,8 @@
<var-decl name='is_keyword' type-id='type-id-5' visibility='default' filepath='Parser/pegen.h' line='117' column='1'/>
</data-member>
</class-decl>
- <typedef-decl name='KeywordOrStarred' type-id='type-id-719' filepath='Parser/pegen.h' line='118' column='1' id='type-id-718'/>
- <class-decl name='ResultTokenWithMetadata' size-in-bits='128' is-struct='yes' naming-typedef-id='type-id-720' visibility='default' filepath='Parser/pegen.h' line='120' column='1' id='type-id-721'>
+ <typedef-decl name='KeywordOrStarred' type-id='type-id-718' filepath='Parser/pegen.h' line='118' column='1' id='type-id-717'/>
+ <class-decl name='ResultTokenWithMetadata' size-in-bits='128' is-struct='yes' naming-typedef-id='type-id-719' visibility='default' filepath='Parser/pegen.h' line='120' column='1' id='type-id-720'>
<data-member access='public' layout-offset-in-bits='0'>
<var-decl name='result' type-id='type-id-29' visibility='default' filepath='Parser/pegen.h' line='121' column='1'/>
</data-member>
@@ -12346,1054 +12334,1054 @@
<var-decl name='metadata' type-id='type-id-4' visibility='default' filepath='Parser/pegen.h' line='122' column='1'/>
</data-member>
</class-decl>
- <typedef-decl name='ResultTokenWithMetadata' type-id='type-id-721' filepath='Parser/pegen.h' line='123' column='1' id='type-id-720'/>
- <enum-decl name='TARGETS_TYPE' naming-typedef-id='type-id-722' filepath='Parser/pegen.h' line='156' column='1' id='type-id-723'>
+ <typedef-decl name='ResultTokenWithMetadata' type-id='type-id-720' filepath='Parser/pegen.h' line='123' column='1' id='type-id-719'/>
+ <enum-decl name='TARGETS_TYPE' naming-typedef-id='type-id-721' filepath='Parser/pegen.h' line='156' column='1' id='type-id-722'>
<underlying-type type-id='type-id-31'/>
<enumerator name='STAR_TARGETS' value='0'/>
<enumerator name='DEL_TARGETS' value='1'/>
<enumerator name='FOR_TARGETS' value='2'/>
</enum-decl>
- <typedef-decl name='TARGETS_TYPE' type-id='type-id-723' filepath='Parser/pegen.h' line='160' column='1' id='type-id-722'/>
- <pointer-type-def type-id='type-id-716' size-in-bits='64' id='type-id-724'/>
- <pointer-type-def type-id='type-id-703' size-in-bits='64' id='type-id-725'/>
- <pointer-type-def type-id='type-id-707' size-in-bits='64' id='type-id-726'/>
- <pointer-type-def type-id='type-id-705' size-in-bits='64' id='type-id-727'/>
- <pointer-type-def type-id='type-id-718' size-in-bits='64' id='type-id-728'/>
- <pointer-type-def type-id='type-id-709' size-in-bits='64' id='type-id-729'/>
- <pointer-type-def type-id='type-id-720' size-in-bits='64' id='type-id-730'/>
- <pointer-type-def type-id='type-id-711' size-in-bits='64' id='type-id-731'/>
- <pointer-type-def type-id='type-id-714' size-in-bits='64' id='type-id-732'/>
- <pointer-type-def type-id='type-id-733' size-in-bits='64' id='type-id-734'/>
- <pointer-type-def type-id='type-id-699' size-in-bits='64' id='type-id-713'/>
- <pointer-type-def type-id='type-id-735' size-in-bits='64' id='type-id-736'/>
- <pointer-type-def type-id='type-id-737' size-in-bits='64' id='type-id-738'/>
- <pointer-type-def type-id='type-id-739' size-in-bits='64' id='type-id-740'/>
+ <typedef-decl name='TARGETS_TYPE' type-id='type-id-722' filepath='Parser/pegen.h' line='160' column='1' id='type-id-721'/>
+ <pointer-type-def type-id='type-id-715' size-in-bits='64' id='type-id-723'/>
+ <pointer-type-def type-id='type-id-702' size-in-bits='64' id='type-id-724'/>
+ <pointer-type-def type-id='type-id-706' size-in-bits='64' id='type-id-725'/>
+ <pointer-type-def type-id='type-id-704' size-in-bits='64' id='type-id-726'/>
+ <pointer-type-def type-id='type-id-717' size-in-bits='64' id='type-id-727'/>
+ <pointer-type-def type-id='type-id-708' size-in-bits='64' id='type-id-728'/>
+ <pointer-type-def type-id='type-id-719' size-in-bits='64' id='type-id-729'/>
+ <pointer-type-def type-id='type-id-710' size-in-bits='64' id='type-id-730'/>
+ <pointer-type-def type-id='type-id-713' size-in-bits='64' id='type-id-731'/>
+ <pointer-type-def type-id='type-id-732' size-in-bits='64' id='type-id-733'/>
+ <pointer-type-def type-id='type-id-698' size-in-bits='64' id='type-id-712'/>
+ <pointer-type-def type-id='type-id-734' size-in-bits='64' id='type-id-735'/>
+ <pointer-type-def type-id='type-id-736' size-in-bits='64' id='type-id-737'/>
+ <pointer-type-def type-id='type-id-738' size-in-bits='64' id='type-id-739'/>
<function-decl name='_PyAST_Interactive' filepath='./Include/internal/pycore_ast.h' line='684' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-608'/>
- <parameter type-id='type-id-680'/>
- <return type-id='type-id-576'/>
+ <parameter type-id='type-id-607'/>
+ <parameter type-id='type-id-679'/>
+ <return type-id='type-id-575'/>
</function-decl>
<function-decl name='_PyAST_Expression' filepath='./Include/internal/pycore_ast.h' line='685' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-610'/>
- <parameter type-id='type-id-680'/>
- <return type-id='type-id-576'/>
+ <parameter type-id='type-id-609'/>
+ <parameter type-id='type-id-679'/>
+ <return type-id='type-id-575'/>
</function-decl>
<function-decl name='_PyAST_FunctionType' filepath='./Include/internal/pycore_ast.h' line='686' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-611'/>
<parameter type-id='type-id-610'/>
- <parameter type-id='type-id-680'/>
- <return type-id='type-id-576'/>
+ <parameter type-id='type-id-609'/>
+ <parameter type-id='type-id-679'/>
+ <return type-id='type-id-575'/>
</function-decl>
<function-decl name='_PyAST_Return' filepath='./Include/internal/pycore_ast.h' line='704' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-610'/>
+ <parameter type-id='type-id-609'/>
<parameter type-id='type-id-5'/>
<parameter type-id='type-id-5'/>
<parameter type-id='type-id-5'/>
<parameter type-id='type-id-5'/>
- <parameter type-id='type-id-680'/>
- <return type-id='type-id-560'/>
+ <parameter type-id='type-id-679'/>
+ <return type-id='type-id-559'/>
</function-decl>
<function-decl name='_PyAST_Delete' filepath='./Include/internal/pycore_ast.h' line='706' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-611'/>
+ <parameter type-id='type-id-610'/>
<parameter type-id='type-id-5'/>
<parameter type-id='type-id-5'/>
<parameter type-id='type-id-5'/>
<parameter type-id='type-id-5'/>
- <parameter type-id='type-id-680'/>
- <return type-id='type-id-560'/>
+ <parameter type-id='type-id-679'/>
+ <return type-id='type-id-559'/>
</function-decl>
<function-decl name='_PyAST_Assign' filepath='./Include/internal/pycore_ast.h' line='708' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-611'/>
<parameter type-id='type-id-610'/>
- <parameter type-id='type-id-635'/>
+ <parameter type-id='type-id-609'/>
+ <parameter type-id='type-id-634'/>
<parameter type-id='type-id-5'/>
<parameter type-id='type-id-5'/>
<parameter type-id='type-id-5'/>
<parameter type-id='type-id-5'/>
- <parameter type-id='type-id-680'/>
- <return type-id='type-id-560'/>
+ <parameter type-id='type-id-679'/>
+ <return type-id='type-id-559'/>
</function-decl>
<function-decl name='_PyAST_TypeAlias' filepath='./Include/internal/pycore_ast.h' line='711' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-610'/>
- <parameter type-id='type-id-636'/>
- <parameter type-id='type-id-610'/>
+ <parameter type-id='type-id-609'/>
+ <parameter type-id='type-id-635'/>
+ <parameter type-id='type-id-609'/>
<parameter type-id='type-id-5'/>
<parameter type-id='type-id-5'/>
<parameter type-id='type-id-5'/>
<parameter type-id='type-id-5'/>
- <parameter type-id='type-id-680'/>
- <return type-id='type-id-560'/>
+ <parameter type-id='type-id-679'/>
+ <return type-id='type-id-559'/>
</function-decl>
<function-decl name='_PyAST_AugAssign' filepath='./Include/internal/pycore_ast.h' line='714' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-610'/>
- <parameter type-id='type-id-638'/>
- <parameter type-id='type-id-610'/>
+ <parameter type-id='type-id-609'/>
+ <parameter type-id='type-id-637'/>
+ <parameter type-id='type-id-609'/>
<parameter type-id='type-id-5'/>
<parameter type-id='type-id-5'/>
<parameter type-id='type-id-5'/>
<parameter type-id='type-id-5'/>
- <parameter type-id='type-id-680'/>
- <return type-id='type-id-560'/>
+ <parameter type-id='type-id-679'/>
+ <return type-id='type-id-559'/>
</function-decl>
<function-decl name='_PyAST_AnnAssign' filepath='./Include/internal/pycore_ast.h' line='717' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-610'/>
- <parameter type-id='type-id-610'/>
- <parameter type-id='type-id-610'/>
+ <parameter type-id='type-id-609'/>
+ <parameter type-id='type-id-609'/>
+ <parameter type-id='type-id-609'/>
<parameter type-id='type-id-5'/>
<parameter type-id='type-id-5'/>
<parameter type-id='type-id-5'/>
<parameter type-id='type-id-5'/>
<parameter type-id='type-id-5'/>
- <parameter type-id='type-id-680'/>
- <return type-id='type-id-560'/>
+ <parameter type-id='type-id-679'/>
+ <return type-id='type-id-559'/>
</function-decl>
<function-decl name='_PyAST_For' filepath='./Include/internal/pycore_ast.h' line='720' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-610'/>
- <parameter type-id='type-id-610'/>
- <parameter type-id='type-id-608'/>
- <parameter type-id='type-id-608'/>
- <parameter type-id='type-id-635'/>
+ <parameter type-id='type-id-609'/>
+ <parameter type-id='type-id-609'/>
+ <parameter type-id='type-id-607'/>
+ <parameter type-id='type-id-607'/>
+ <parameter type-id='type-id-634'/>
<parameter type-id='type-id-5'/>
<parameter type-id='type-id-5'/>
<parameter type-id='type-id-5'/>
<parameter type-id='type-id-5'/>
- <parameter type-id='type-id-680'/>
- <return type-id='type-id-560'/>
+ <parameter type-id='type-id-679'/>
+ <return type-id='type-id-559'/>
</function-decl>
<function-decl name='_PyAST_AsyncFor' filepath='./Include/internal/pycore_ast.h' line='724' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-610'/>
- <parameter type-id='type-id-610'/>
- <parameter type-id='type-id-608'/>
- <parameter type-id='type-id-608'/>
- <parameter type-id='type-id-635'/>
+ <parameter type-id='type-id-609'/>
+ <parameter type-id='type-id-609'/>
+ <parameter type-id='type-id-607'/>
+ <parameter type-id='type-id-607'/>
+ <parameter type-id='type-id-634'/>
<parameter type-id='type-id-5'/>
<parameter type-id='type-id-5'/>
<parameter type-id='type-id-5'/>
<parameter type-id='type-id-5'/>
- <parameter type-id='type-id-680'/>
- <return type-id='type-id-560'/>
+ <parameter type-id='type-id-679'/>
+ <return type-id='type-id-559'/>
</function-decl>
<function-decl name='_PyAST_While' filepath='./Include/internal/pycore_ast.h' line='728' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-610'/>
- <parameter type-id='type-id-608'/>
- <parameter type-id='type-id-608'/>
+ <parameter type-id='type-id-609'/>
+ <parameter type-id='type-id-607'/>
+ <parameter type-id='type-id-607'/>
<parameter type-id='type-id-5'/>
<parameter type-id='type-id-5'/>
<parameter type-id='type-id-5'/>
<parameter type-id='type-id-5'/>
- <parameter type-id='type-id-680'/>
- <return type-id='type-id-560'/>
+ <parameter type-id='type-id-679'/>
+ <return type-id='type-id-559'/>
</function-decl>
<function-decl name='_PyAST_If' filepath='./Include/internal/pycore_ast.h' line='731' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-610'/>
- <parameter type-id='type-id-608'/>
- <parameter type-id='type-id-608'/>
+ <parameter type-id='type-id-609'/>
+ <parameter type-id='type-id-607'/>
+ <parameter type-id='type-id-607'/>
<parameter type-id='type-id-5'/>
<parameter type-id='type-id-5'/>
<parameter type-id='type-id-5'/>
<parameter type-id='type-id-5'/>
- <parameter type-id='type-id-680'/>
- <return type-id='type-id-560'/>
+ <parameter type-id='type-id-679'/>
+ <return type-id='type-id-559'/>
</function-decl>
<function-decl name='_PyAST_With' filepath='./Include/internal/pycore_ast.h' line='734' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-639'/>
- <parameter type-id='type-id-608'/>
- <parameter type-id='type-id-635'/>
+ <parameter type-id='type-id-638'/>
+ <parameter type-id='type-id-607'/>
+ <parameter type-id='type-id-634'/>
<parameter type-id='type-id-5'/>
<parameter type-id='type-id-5'/>
<parameter type-id='type-id-5'/>
<parameter type-id='type-id-5'/>
- <parameter type-id='type-id-680'/>
- <return type-id='type-id-560'/>
+ <parameter type-id='type-id-679'/>
+ <return type-id='type-id-559'/>
</function-decl>
<function-decl name='_PyAST_AsyncWith' filepath='./Include/internal/pycore_ast.h' line='737' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-639'/>
- <parameter type-id='type-id-608'/>
- <parameter type-id='type-id-635'/>
+ <parameter type-id='type-id-638'/>
+ <parameter type-id='type-id-607'/>
+ <parameter type-id='type-id-634'/>
<parameter type-id='type-id-5'/>
<parameter type-id='type-id-5'/>
<parameter type-id='type-id-5'/>
<parameter type-id='type-id-5'/>
- <parameter type-id='type-id-680'/>
- <return type-id='type-id-560'/>
+ <parameter type-id='type-id-679'/>
+ <return type-id='type-id-559'/>
</function-decl>
<function-decl name='_PyAST_Match' filepath='./Include/internal/pycore_ast.h' line='740' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-610'/>
- <parameter type-id='type-id-640'/>
+ <parameter type-id='type-id-609'/>
+ <parameter type-id='type-id-639'/>
<parameter type-id='type-id-5'/>
<parameter type-id='type-id-5'/>
<parameter type-id='type-id-5'/>
<parameter type-id='type-id-5'/>
- <parameter type-id='type-id-680'/>
- <return type-id='type-id-560'/>
+ <parameter type-id='type-id-679'/>
+ <return type-id='type-id-559'/>
</function-decl>
<function-decl name='_PyAST_Raise' filepath='./Include/internal/pycore_ast.h' line='743' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-610'/>
- <parameter type-id='type-id-610'/>
+ <parameter type-id='type-id-609'/>
+ <parameter type-id='type-id-609'/>
<parameter type-id='type-id-5'/>
<parameter type-id='type-id-5'/>
<parameter type-id='type-id-5'/>
<parameter type-id='type-id-5'/>
- <parameter type-id='type-id-680'/>
- <return type-id='type-id-560'/>
+ <parameter type-id='type-id-679'/>
+ <return type-id='type-id-559'/>
</function-decl>
<function-decl name='_PyAST_Try' filepath='./Include/internal/pycore_ast.h' line='745' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-608'/>
- <parameter type-id='type-id-641'/>
- <parameter type-id='type-id-608'/>
- <parameter type-id='type-id-608'/>
+ <parameter type-id='type-id-607'/>
+ <parameter type-id='type-id-640'/>
+ <parameter type-id='type-id-607'/>
+ <parameter type-id='type-id-607'/>
<parameter type-id='type-id-5'/>
<parameter type-id='type-id-5'/>
<parameter type-id='type-id-5'/>
<parameter type-id='type-id-5'/>
- <parameter type-id='type-id-680'/>
- <return type-id='type-id-560'/>
+ <parameter type-id='type-id-679'/>
+ <return type-id='type-id-559'/>
</function-decl>
<function-decl name='_PyAST_TryStar' filepath='./Include/internal/pycore_ast.h' line='749' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-608'/>
- <parameter type-id='type-id-641'/>
- <parameter type-id='type-id-608'/>
- <parameter type-id='type-id-608'/>
+ <parameter type-id='type-id-607'/>
+ <parameter type-id='type-id-640'/>
+ <parameter type-id='type-id-607'/>
+ <parameter type-id='type-id-607'/>
<parameter type-id='type-id-5'/>
<parameter type-id='type-id-5'/>
<parameter type-id='type-id-5'/>
<parameter type-id='type-id-5'/>
- <parameter type-id='type-id-680'/>
- <return type-id='type-id-560'/>
+ <parameter type-id='type-id-679'/>
+ <return type-id='type-id-559'/>
</function-decl>
<function-decl name='_PyAST_Assert' filepath='./Include/internal/pycore_ast.h' line='753' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-610'/>
- <parameter type-id='type-id-610'/>
+ <parameter type-id='type-id-609'/>
+ <parameter type-id='type-id-609'/>
<parameter type-id='type-id-5'/>
<parameter type-id='type-id-5'/>
<parameter type-id='type-id-5'/>
<parameter type-id='type-id-5'/>
- <parameter type-id='type-id-680'/>
- <return type-id='type-id-560'/>
+ <parameter type-id='type-id-679'/>
+ <return type-id='type-id-559'/>
</function-decl>
<function-decl name='_PyAST_Import' filepath='./Include/internal/pycore_ast.h' line='755' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-642'/>
+ <parameter type-id='type-id-641'/>
<parameter type-id='type-id-5'/>
<parameter type-id='type-id-5'/>
<parameter type-id='type-id-5'/>
<parameter type-id='type-id-5'/>
- <parameter type-id='type-id-680'/>
- <return type-id='type-id-560'/>
+ <parameter type-id='type-id-679'/>
+ <return type-id='type-id-559'/>
</function-decl>
<function-decl name='_PyAST_ImportFrom' filepath='./Include/internal/pycore_ast.h' line='757' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-633'/>
- <parameter type-id='type-id-642'/>
+ <parameter type-id='type-id-632'/>
+ <parameter type-id='type-id-641'/>
<parameter type-id='type-id-5'/>
<parameter type-id='type-id-5'/>
<parameter type-id='type-id-5'/>
<parameter type-id='type-id-5'/>
<parameter type-id='type-id-5'/>
- <parameter type-id='type-id-680'/>
- <return type-id='type-id-560'/>
+ <parameter type-id='type-id-679'/>
+ <return type-id='type-id-559'/>
</function-decl>
<function-decl name='_PyAST_Global' filepath='./Include/internal/pycore_ast.h' line='760' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-643'/>
+ <parameter type-id='type-id-642'/>
<parameter type-id='type-id-5'/>
<parameter type-id='type-id-5'/>
<parameter type-id='type-id-5'/>
<parameter type-id='type-id-5'/>
- <parameter type-id='type-id-680'/>
- <return type-id='type-id-560'/>
+ <parameter type-id='type-id-679'/>
+ <return type-id='type-id-559'/>
</function-decl>
<function-decl name='_PyAST_Nonlocal' filepath='./Include/internal/pycore_ast.h' line='762' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-643'/>
+ <parameter type-id='type-id-642'/>
<parameter type-id='type-id-5'/>
<parameter type-id='type-id-5'/>
<parameter type-id='type-id-5'/>
<parameter type-id='type-id-5'/>
- <parameter type-id='type-id-680'/>
- <return type-id='type-id-560'/>
+ <parameter type-id='type-id-679'/>
+ <return type-id='type-id-559'/>
</function-decl>
<function-decl name='_PyAST_Expr' filepath='./Include/internal/pycore_ast.h' line='765' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-610'/>
+ <parameter type-id='type-id-609'/>
<parameter type-id='type-id-5'/>
<parameter type-id='type-id-5'/>
<parameter type-id='type-id-5'/>
<parameter type-id='type-id-5'/>
- <parameter type-id='type-id-680'/>
- <return type-id='type-id-560'/>
+ <parameter type-id='type-id-679'/>
+ <return type-id='type-id-559'/>
</function-decl>
<function-decl name='_PyAST_Pass' filepath='./Include/internal/pycore_ast.h' line='767' column='1' visibility='default' binding='global' size-in-bits='64'>
<parameter type-id='type-id-5'/>
<parameter type-id='type-id-5'/>
<parameter type-id='type-id-5'/>
<parameter type-id='type-id-5'/>
- <parameter type-id='type-id-680'/>
- <return type-id='type-id-560'/>
+ <parameter type-id='type-id-679'/>
+ <return type-id='type-id-559'/>
</function-decl>
<function-decl name='_PyAST_Break' filepath='./Include/internal/pycore_ast.h' line='769' column='1' visibility='default' binding='global' size-in-bits='64'>
<parameter type-id='type-id-5'/>
<parameter type-id='type-id-5'/>
<parameter type-id='type-id-5'/>
<parameter type-id='type-id-5'/>
- <parameter type-id='type-id-680'/>
- <return type-id='type-id-560'/>
+ <parameter type-id='type-id-679'/>
+ <return type-id='type-id-559'/>
</function-decl>
<function-decl name='_PyAST_Continue' filepath='./Include/internal/pycore_ast.h' line='771' column='1' visibility='default' binding='global' size-in-bits='64'>
<parameter type-id='type-id-5'/>
<parameter type-id='type-id-5'/>
<parameter type-id='type-id-5'/>
<parameter type-id='type-id-5'/>
- <parameter type-id='type-id-680'/>
- <return type-id='type-id-560'/>
+ <parameter type-id='type-id-679'/>
+ <return type-id='type-id-559'/>
</function-decl>
<function-decl name='_PyAST_BoolOp' filepath='./Include/internal/pycore_ast.h' line='773' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-741'/>
- <parameter type-id='type-id-611'/>
+ <parameter type-id='type-id-740'/>
+ <parameter type-id='type-id-610'/>
<parameter type-id='type-id-5'/>
<parameter type-id='type-id-5'/>
<parameter type-id='type-id-5'/>
<parameter type-id='type-id-5'/>
- <parameter type-id='type-id-680'/>
- <return type-id='type-id-610'/>
+ <parameter type-id='type-id-679'/>
+ <return type-id='type-id-609'/>
</function-decl>
<function-decl name='_PyAST_NamedExpr' filepath='./Include/internal/pycore_ast.h' line='776' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-610'/>
- <parameter type-id='type-id-610'/>
+ <parameter type-id='type-id-609'/>
+ <parameter type-id='type-id-609'/>
<parameter type-id='type-id-5'/>
<parameter type-id='type-id-5'/>
<parameter type-id='type-id-5'/>
<parameter type-id='type-id-5'/>
- <parameter type-id='type-id-680'/>
- <return type-id='type-id-610'/>
+ <parameter type-id='type-id-679'/>
+ <return type-id='type-id-609'/>
</function-decl>
<function-decl name='_PyAST_BinOp' filepath='./Include/internal/pycore_ast.h' line='779' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-610'/>
- <parameter type-id='type-id-638'/>
- <parameter type-id='type-id-610'/>
+ <parameter type-id='type-id-609'/>
+ <parameter type-id='type-id-637'/>
+ <parameter type-id='type-id-609'/>
<parameter type-id='type-id-5'/>
<parameter type-id='type-id-5'/>
<parameter type-id='type-id-5'/>
<parameter type-id='type-id-5'/>
- <parameter type-id='type-id-680'/>
- <return type-id='type-id-610'/>
+ <parameter type-id='type-id-679'/>
+ <return type-id='type-id-609'/>
</function-decl>
<function-decl name='_PyAST_UnaryOp' filepath='./Include/internal/pycore_ast.h' line='782' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-742'/>
- <parameter type-id='type-id-610'/>
+ <parameter type-id='type-id-741'/>
+ <parameter type-id='type-id-609'/>
<parameter type-id='type-id-5'/>
<parameter type-id='type-id-5'/>
<parameter type-id='type-id-5'/>
<parameter type-id='type-id-5'/>
- <parameter type-id='type-id-680'/>
- <return type-id='type-id-610'/>
+ <parameter type-id='type-id-679'/>
+ <return type-id='type-id-609'/>
</function-decl>
<function-decl name='_PyAST_Lambda' filepath='./Include/internal/pycore_ast.h' line='785' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-634'/>
- <parameter type-id='type-id-610'/>
+ <parameter type-id='type-id-633'/>
+ <parameter type-id='type-id-609'/>
<parameter type-id='type-id-5'/>
<parameter type-id='type-id-5'/>
<parameter type-id='type-id-5'/>
<parameter type-id='type-id-5'/>
- <parameter type-id='type-id-680'/>
- <return type-id='type-id-610'/>
+ <parameter type-id='type-id-679'/>
+ <return type-id='type-id-609'/>
</function-decl>
<function-decl name='_PyAST_IfExp' filepath='./Include/internal/pycore_ast.h' line='788' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-610'/>
- <parameter type-id='type-id-610'/>
- <parameter type-id='type-id-610'/>
+ <parameter type-id='type-id-609'/>
+ <parameter type-id='type-id-609'/>
+ <parameter type-id='type-id-609'/>
<parameter type-id='type-id-5'/>
<parameter type-id='type-id-5'/>
<parameter type-id='type-id-5'/>
<parameter type-id='type-id-5'/>
- <parameter type-id='type-id-680'/>
- <return type-id='type-id-610'/>
+ <parameter type-id='type-id-679'/>
+ <return type-id='type-id-609'/>
</function-decl>
<function-decl name='_PyAST_Dict' filepath='./Include/internal/pycore_ast.h' line='791' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-611'/>
- <parameter type-id='type-id-611'/>
+ <parameter type-id='type-id-610'/>
+ <parameter type-id='type-id-610'/>
<parameter type-id='type-id-5'/>
<parameter type-id='type-id-5'/>
<parameter type-id='type-id-5'/>
<parameter type-id='type-id-5'/>
- <parameter type-id='type-id-680'/>
- <return type-id='type-id-610'/>
+ <parameter type-id='type-id-679'/>
+ <return type-id='type-id-609'/>
</function-decl>
<function-decl name='_PyAST_Set' filepath='./Include/internal/pycore_ast.h' line='794' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-611'/>
+ <parameter type-id='type-id-610'/>
<parameter type-id='type-id-5'/>
<parameter type-id='type-id-5'/>
<parameter type-id='type-id-5'/>
<parameter type-id='type-id-5'/>
- <parameter type-id='type-id-680'/>
- <return type-id='type-id-610'/>
+ <parameter type-id='type-id-679'/>
+ <return type-id='type-id-609'/>
</function-decl>
<function-decl name='_PyAST_ListComp' filepath='./Include/internal/pycore_ast.h' line='796' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-610'/>
- <parameter type-id='type-id-743'/>
+ <parameter type-id='type-id-609'/>
+ <parameter type-id='type-id-742'/>
<parameter type-id='type-id-5'/>
<parameter type-id='type-id-5'/>
<parameter type-id='type-id-5'/>
<parameter type-id='type-id-5'/>
- <parameter type-id='type-id-680'/>
- <return type-id='type-id-610'/>
+ <parameter type-id='type-id-679'/>
+ <return type-id='type-id-609'/>
</function-decl>
<function-decl name='_PyAST_SetComp' filepath='./Include/internal/pycore_ast.h' line='799' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-610'/>
- <parameter type-id='type-id-743'/>
+ <parameter type-id='type-id-609'/>
+ <parameter type-id='type-id-742'/>
<parameter type-id='type-id-5'/>
<parameter type-id='type-id-5'/>
<parameter type-id='type-id-5'/>
<parameter type-id='type-id-5'/>
- <parameter type-id='type-id-680'/>
- <return type-id='type-id-610'/>
+ <parameter type-id='type-id-679'/>
+ <return type-id='type-id-609'/>
</function-decl>
<function-decl name='_PyAST_DictComp' filepath='./Include/internal/pycore_ast.h' line='802' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-610'/>
- <parameter type-id='type-id-610'/>
- <parameter type-id='type-id-743'/>
+ <parameter type-id='type-id-609'/>
+ <parameter type-id='type-id-609'/>
+ <parameter type-id='type-id-742'/>
<parameter type-id='type-id-5'/>
<parameter type-id='type-id-5'/>
<parameter type-id='type-id-5'/>
<parameter type-id='type-id-5'/>
- <parameter type-id='type-id-680'/>
- <return type-id='type-id-610'/>
+ <parameter type-id='type-id-679'/>
+ <return type-id='type-id-609'/>
</function-decl>
<function-decl name='_PyAST_GeneratorExp' filepath='./Include/internal/pycore_ast.h' line='805' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-610'/>
- <parameter type-id='type-id-743'/>
+ <parameter type-id='type-id-609'/>
+ <parameter type-id='type-id-742'/>
<parameter type-id='type-id-5'/>
<parameter type-id='type-id-5'/>
<parameter type-id='type-id-5'/>
<parameter type-id='type-id-5'/>
- <parameter type-id='type-id-680'/>
- <return type-id='type-id-610'/>
+ <parameter type-id='type-id-679'/>
+ <return type-id='type-id-609'/>
</function-decl>
<function-decl name='_PyAST_Await' filepath='./Include/internal/pycore_ast.h' line='808' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-610'/>
+ <parameter type-id='type-id-609'/>
<parameter type-id='type-id-5'/>
<parameter type-id='type-id-5'/>
<parameter type-id='type-id-5'/>
<parameter type-id='type-id-5'/>
- <parameter type-id='type-id-680'/>
- <return type-id='type-id-610'/>
+ <parameter type-id='type-id-679'/>
+ <return type-id='type-id-609'/>
</function-decl>
<function-decl name='_PyAST_Yield' filepath='./Include/internal/pycore_ast.h' line='810' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-610'/>
+ <parameter type-id='type-id-609'/>
<parameter type-id='type-id-5'/>
<parameter type-id='type-id-5'/>
<parameter type-id='type-id-5'/>
<parameter type-id='type-id-5'/>
- <parameter type-id='type-id-680'/>
- <return type-id='type-id-610'/>
+ <parameter type-id='type-id-679'/>
+ <return type-id='type-id-609'/>
</function-decl>
<function-decl name='_PyAST_YieldFrom' filepath='./Include/internal/pycore_ast.h' line='812' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-610'/>
+ <parameter type-id='type-id-609'/>
<parameter type-id='type-id-5'/>
<parameter type-id='type-id-5'/>
<parameter type-id='type-id-5'/>
<parameter type-id='type-id-5'/>
- <parameter type-id='type-id-680'/>
- <return type-id='type-id-610'/>
+ <parameter type-id='type-id-679'/>
+ <return type-id='type-id-609'/>
</function-decl>
<function-decl name='_PyAST_Compare' filepath='./Include/internal/pycore_ast.h' line='814' column='1' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-609'/>
+ <parameter type-id='type-id-680'/>
<parameter type-id='type-id-610'/>
- <parameter type-id='type-id-681'/>
- <parameter type-id='type-id-611'/>
<parameter type-id='type-id-5'/>
<parameter type-id='type-id-5'/>
<parameter type-id='type-id-5'/>
<parameter type-id='type-id-5'/>
- <parameter type-id='type-id-680'/>
- <return type-id='type-id-610'/>
+ <parameter type-id='type-id-679'/>
+ <return type-id='type-id-609'/>
</function-decl>
<function-decl name='_PyAST_Slice' filepath='./Include/internal/pycore_ast.h' line='846' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-610'/>
- <parameter type-id='type-id-610'/>
- <parameter type-id='type-id-610'/>
+ <parameter type-id='type-id-609'/>
+ <parameter type-id='type-id-609'/>
+ <parameter type-id='type-id-609'/>
<parameter type-id='type-id-5'/>
<parameter type-id='type-id-5'/>
<parameter type-id='type-id-5'/>
<parameter type-id='type-id-5'/>
- <parameter type-id='type-id-680'/>
- <return type-id='type-id-610'/>
+ <parameter type-id='type-id-679'/>
+ <return type-id='type-id-609'/>
</function-decl>
<function-decl name='_PyAST_comprehension' filepath='./Include/internal/pycore_ast.h' line='849' column='1' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-609'/>
+ <parameter type-id='type-id-609'/>
<parameter type-id='type-id-610'/>
- <parameter type-id='type-id-610'/>
- <parameter type-id='type-id-611'/>
<parameter type-id='type-id-5'/>
- <parameter type-id='type-id-680'/>
- <return type-id='type-id-744'/>
+ <parameter type-id='type-id-679'/>
+ <return type-id='type-id-743'/>
</function-decl>
<function-decl name='_PyAST_ExceptHandler' filepath='./Include/internal/pycore_ast.h' line='852' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-610'/>
- <parameter type-id='type-id-633'/>
- <parameter type-id='type-id-608'/>
+ <parameter type-id='type-id-609'/>
+ <parameter type-id='type-id-632'/>
+ <parameter type-id='type-id-607'/>
<parameter type-id='type-id-5'/>
<parameter type-id='type-id-5'/>
<parameter type-id='type-id-5'/>
<parameter type-id='type-id-5'/>
- <parameter type-id='type-id-680'/>
- <return type-id='type-id-554'/>
+ <parameter type-id='type-id-679'/>
+ <return type-id='type-id-553'/>
</function-decl>
<function-decl name='_PyAST_keyword' filepath='./Include/internal/pycore_ast.h' line='863' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-633'/>
- <parameter type-id='type-id-610'/>
+ <parameter type-id='type-id-632'/>
+ <parameter type-id='type-id-609'/>
<parameter type-id='type-id-5'/>
<parameter type-id='type-id-5'/>
<parameter type-id='type-id-5'/>
<parameter type-id='type-id-5'/>
- <parameter type-id='type-id-680'/>
- <return type-id='type-id-745'/>
+ <parameter type-id='type-id-679'/>
+ <return type-id='type-id-744'/>
</function-decl>
<function-decl name='_PyAST_withitem' filepath='./Include/internal/pycore_ast.h' line='869' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-610'/>
- <parameter type-id='type-id-610'/>
- <parameter type-id='type-id-680'/>
- <return type-id='type-id-567'/>
+ <parameter type-id='type-id-609'/>
+ <parameter type-id='type-id-609'/>
+ <parameter type-id='type-id-679'/>
+ <return type-id='type-id-566'/>
</function-decl>
<function-decl name='_PyAST_match_case' filepath='./Include/internal/pycore_ast.h' line='871' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-558'/>
- <parameter type-id='type-id-610'/>
- <parameter type-id='type-id-608'/>
- <parameter type-id='type-id-680'/>
- <return type-id='type-id-556'/>
+ <parameter type-id='type-id-557'/>
+ <parameter type-id='type-id-609'/>
+ <parameter type-id='type-id-607'/>
+ <parameter type-id='type-id-679'/>
+ <return type-id='type-id-555'/>
</function-decl>
<function-decl name='_PyAST_MatchValue' filepath='./Include/internal/pycore_ast.h' line='873' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-610'/>
+ <parameter type-id='type-id-609'/>
<parameter type-id='type-id-5'/>
<parameter type-id='type-id-5'/>
<parameter type-id='type-id-5'/>
<parameter type-id='type-id-5'/>
- <parameter type-id='type-id-680'/>
- <return type-id='type-id-558'/>
+ <parameter type-id='type-id-679'/>
+ <return type-id='type-id-557'/>
</function-decl>
<function-decl name='_PyAST_MatchSingleton' filepath='./Include/internal/pycore_ast.h' line='875' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-660'/>
+ <parameter type-id='type-id-659'/>
<parameter type-id='type-id-5'/>
<parameter type-id='type-id-5'/>
<parameter type-id='type-id-5'/>
<parameter type-id='type-id-5'/>
- <parameter type-id='type-id-680'/>
- <return type-id='type-id-558'/>
+ <parameter type-id='type-id-679'/>
+ <return type-id='type-id-557'/>
</function-decl>
<function-decl name='_PyAST_MatchSequence' filepath='./Include/internal/pycore_ast.h' line='878' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-661'/>
+ <parameter type-id='type-id-660'/>
<parameter type-id='type-id-5'/>
<parameter type-id='type-id-5'/>
<parameter type-id='type-id-5'/>
<parameter type-id='type-id-5'/>
- <parameter type-id='type-id-680'/>
- <return type-id='type-id-558'/>
+ <parameter type-id='type-id-679'/>
+ <return type-id='type-id-557'/>
</function-decl>
<function-decl name='_PyAST_MatchMapping' filepath='./Include/internal/pycore_ast.h' line='881' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-611'/>
- <parameter type-id='type-id-661'/>
- <parameter type-id='type-id-633'/>
+ <parameter type-id='type-id-610'/>
+ <parameter type-id='type-id-660'/>
+ <parameter type-id='type-id-632'/>
<parameter type-id='type-id-5'/>
<parameter type-id='type-id-5'/>
<parameter type-id='type-id-5'/>
<parameter type-id='type-id-5'/>
- <parameter type-id='type-id-680'/>
- <return type-id='type-id-558'/>
+ <parameter type-id='type-id-679'/>
+ <return type-id='type-id-557'/>
</function-decl>
<function-decl name='_PyAST_MatchClass' filepath='./Include/internal/pycore_ast.h' line='885' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-610'/>
- <parameter type-id='type-id-661'/>
- <parameter type-id='type-id-643'/>
- <parameter type-id='type-id-661'/>
+ <parameter type-id='type-id-609'/>
+ <parameter type-id='type-id-660'/>
+ <parameter type-id='type-id-642'/>
+ <parameter type-id='type-id-660'/>
<parameter type-id='type-id-5'/>
<parameter type-id='type-id-5'/>
<parameter type-id='type-id-5'/>
<parameter type-id='type-id-5'/>
- <parameter type-id='type-id-680'/>
- <return type-id='type-id-558'/>
+ <parameter type-id='type-id-679'/>
+ <return type-id='type-id-557'/>
</function-decl>
<function-decl name='_PyAST_MatchStar' filepath='./Include/internal/pycore_ast.h' line='889' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-633'/>
+ <parameter type-id='type-id-632'/>
<parameter type-id='type-id-5'/>
<parameter type-id='type-id-5'/>
<parameter type-id='type-id-5'/>
<parameter type-id='type-id-5'/>
- <parameter type-id='type-id-680'/>
- <return type-id='type-id-558'/>
+ <parameter type-id='type-id-679'/>
+ <return type-id='type-id-557'/>
</function-decl>
<function-decl name='_PyAST_MatchAs' filepath='./Include/internal/pycore_ast.h' line='891' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-558'/>
- <parameter type-id='type-id-633'/>
+ <parameter type-id='type-id-557'/>
+ <parameter type-id='type-id-632'/>
<parameter type-id='type-id-5'/>
<parameter type-id='type-id-5'/>
<parameter type-id='type-id-5'/>
<parameter type-id='type-id-5'/>
- <parameter type-id='type-id-680'/>
- <return type-id='type-id-558'/>
+ <parameter type-id='type-id-679'/>
+ <return type-id='type-id-557'/>
</function-decl>
<function-decl name='_PyAST_MatchOr' filepath='./Include/internal/pycore_ast.h' line='894' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-661'/>
+ <parameter type-id='type-id-660'/>
<parameter type-id='type-id-5'/>
<parameter type-id='type-id-5'/>
<parameter type-id='type-id-5'/>
<parameter type-id='type-id-5'/>
- <parameter type-id='type-id-680'/>
- <return type-id='type-id-558'/>
+ <parameter type-id='type-id-679'/>
+ <return type-id='type-id-557'/>
</function-decl>
<function-decl name='_PyAST_TypeVar' filepath='./Include/internal/pycore_ast.h' line='898' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-633'/>
- <parameter type-id='type-id-610'/>
- <parameter type-id='type-id-610'/>
+ <parameter type-id='type-id-632'/>
+ <parameter type-id='type-id-609'/>
+ <parameter type-id='type-id-609'/>
<parameter type-id='type-id-5'/>
<parameter type-id='type-id-5'/>
<parameter type-id='type-id-5'/>
<parameter type-id='type-id-5'/>
- <parameter type-id='type-id-680'/>
- <return type-id='type-id-564'/>
+ <parameter type-id='type-id-679'/>
+ <return type-id='type-id-563'/>
</function-decl>
<function-decl name='_PyAST_ParamSpec' filepath='./Include/internal/pycore_ast.h' line='901' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-633'/>
- <parameter type-id='type-id-610'/>
+ <parameter type-id='type-id-632'/>
+ <parameter type-id='type-id-609'/>
<parameter type-id='type-id-5'/>
<parameter type-id='type-id-5'/>
<parameter type-id='type-id-5'/>
<parameter type-id='type-id-5'/>
- <parameter type-id='type-id-680'/>
- <return type-id='type-id-564'/>
+ <parameter type-id='type-id-679'/>
+ <return type-id='type-id-563'/>
</function-decl>
<function-decl name='_PyAST_TypeVarTuple' filepath='./Include/internal/pycore_ast.h' line='904' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-633'/>
- <parameter type-id='type-id-610'/>
+ <parameter type-id='type-id-632'/>
+ <parameter type-id='type-id-609'/>
<parameter type-id='type-id-5'/>
<parameter type-id='type-id-5'/>
<parameter type-id='type-id-5'/>
<parameter type-id='type-id-5'/>
- <parameter type-id='type-id-680'/>
- <return type-id='type-id-564'/>
+ <parameter type-id='type-id-679'/>
+ <return type-id='type-id-563'/>
</function-decl>
<function-decl name='_PyPegen_insert_memo' filepath='Parser/pegen.h' line='131' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-685'/>
+ <parameter type-id='type-id-684'/>
<parameter type-id='type-id-5'/>
<parameter type-id='type-id-5'/>
<parameter type-id='type-id-29'/>
<return type-id='type-id-5'/>
</function-decl>
<function-decl name='_PyPegen_update_memo' filepath='Parser/pegen.h' line='132' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-685'/>
+ <parameter type-id='type-id-684'/>
<parameter type-id='type-id-5'/>
<parameter type-id='type-id-5'/>
<parameter type-id='type-id-29'/>
<return type-id='type-id-5'/>
</function-decl>
<function-decl name='_PyPegen_is_memoized' filepath='Parser/pegen.h' line='133' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-685'/>
+ <parameter type-id='type-id-684'/>
<parameter type-id='type-id-5'/>
<parameter type-id='type-id-29'/>
<return type-id='type-id-5'/>
</function-decl>
<function-decl name='_PyPegen_lookahead_with_name' filepath='Parser/pegen.h' line='135' column='1' visibility='default' binding='global' size-in-bits='64'>
<parameter type-id='type-id-5'/>
- <parameter type-id='type-id-736'/>
- <parameter type-id='type-id-685'/>
+ <parameter type-id='type-id-735'/>
+ <parameter type-id='type-id-684'/>
<return type-id='type-id-5'/>
</function-decl>
<function-decl name='_PyPegen_lookahead_with_int' filepath='Parser/pegen.h' line='136' column='1' visibility='default' binding='global' size-in-bits='64'>
<parameter type-id='type-id-5'/>
- <parameter type-id='type-id-734'/>
- <parameter type-id='type-id-685'/>
+ <parameter type-id='type-id-733'/>
+ <parameter type-id='type-id-684'/>
<parameter type-id='type-id-5'/>
<return type-id='type-id-5'/>
</function-decl>
<function-decl name='_PyPegen_lookahead_with_string' filepath='Parser/pegen.h' line='137' column='1' visibility='default' binding='global' size-in-bits='64'>
<parameter type-id='type-id-5'/>
- <parameter type-id='type-id-738'/>
- <parameter type-id='type-id-685'/>
+ <parameter type-id='type-id-737'/>
+ <parameter type-id='type-id-684'/>
<parameter type-id='type-id-6'/>
<return type-id='type-id-5'/>
</function-decl>
<function-decl name='_PyPegen_lookahead' filepath='Parser/pegen.h' line='138' column='1' visibility='default' binding='global' size-in-bits='64'>
<parameter type-id='type-id-5'/>
- <parameter type-id='type-id-740'/>
- <parameter type-id='type-id-685'/>
+ <parameter type-id='type-id-739'/>
+ <parameter type-id='type-id-684'/>
<return type-id='type-id-5'/>
</function-decl>
<function-decl name='_PyPegen_expect_token' filepath='Parser/pegen.h' line='140' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-685'/>
+ <parameter type-id='type-id-684'/>
<parameter type-id='type-id-5'/>
- <return type-id='type-id-686'/>
+ <return type-id='type-id-685'/>
</function-decl>
<function-decl name='_PyPegen_expect_forced_token' filepath='Parser/pegen.h' line='142' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-685'/>
+ <parameter type-id='type-id-684'/>
<parameter type-id='type-id-5'/>
<parameter type-id='type-id-6'/>
- <return type-id='type-id-686'/>
+ <return type-id='type-id-685'/>
</function-decl>
<function-decl name='_PyPegen_expect_soft_keyword' filepath='Parser/pegen.h' line='143' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-685'/>
+ <parameter type-id='type-id-684'/>
<parameter type-id='type-id-6'/>
- <return type-id='type-id-610'/>
+ <return type-id='type-id-609'/>
</function-decl>
<function-decl name='_PyPegen_soft_keyword_token' filepath='Parser/pegen.h' line='144' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-685'/>
- <return type-id='type-id-610'/>
+ <parameter type-id='type-id-684'/>
+ <return type-id='type-id-609'/>
</function-decl>
<function-decl name='_PyPegen_get_last_nonnwhitespace_token' filepath='Parser/pegen.h' line='146' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-685'/>
- <return type-id='type-id-686'/>
+ <parameter type-id='type-id-684'/>
+ <return type-id='type-id-685'/>
</function-decl>
<function-decl name='_PyPegen_name_token' filepath='Parser/pegen.h' line='148' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-685'/>
- <return type-id='type-id-610'/>
+ <parameter type-id='type-id-684'/>
+ <return type-id='type-id-609'/>
</function-decl>
<function-decl name='_PyPegen_number_token' filepath='Parser/pegen.h' line='149' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-685'/>
- <return type-id='type-id-610'/>
+ <parameter type-id='type-id-684'/>
+ <return type-id='type-id-609'/>
</function-decl>
<function-decl name='_PyPegen_string_token' filepath='Parser/pegen.h' line='150' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-685'/>
+ <parameter type-id='type-id-684'/>
<return type-id='type-id-29'/>
</function-decl>
<function-decl name='_Pypegen_stack_overflow' filepath='Parser/pegen.h' line='171' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-685'/>
+ <parameter type-id='type-id-684'/>
<return type-id='type-id-3'/>
</function-decl>
<function-decl name='_PyPegen_get_invalid_target' filepath='Parser/pegen.h' line='222' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-610'/>
- <parameter type-id='type-id-722'/>
- <return type-id='type-id-610'/>
+ <parameter type-id='type-id-609'/>
+ <parameter type-id='type-id-721'/>
+ <return type-id='type-id-609'/>
</function-decl>
<function-decl name='_PyPegen_get_expr_name' filepath='Parser/pegen.h' line='223' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-610'/>
+ <parameter type-id='type-id-609'/>
<return type-id='type-id-6'/>
</function-decl>
<function-decl name='_PyPegen_dummy_name' filepath='Parser/pegen.h' line='248' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-685'/>
+ <parameter type-id='type-id-684'/>
<parameter is-variadic='yes'/>
<return type-id='type-id-29'/>
</function-decl>
<function-decl name='_PyPegen_seq_last_item' filepath='Parser/pegen.h' line='249' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-713'/>
+ <parameter type-id='type-id-712'/>
<return type-id='type-id-29'/>
</function-decl>
<function-decl name='_PyPegen_seq_first_item' filepath='Parser/pegen.h' line='251' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-713'/>
+ <parameter type-id='type-id-712'/>
<return type-id='type-id-29'/>
</function-decl>
<function-decl name='_PyPegen_new_type_comment' filepath='Parser/pegen.h' line='256' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-685'/>
+ <parameter type-id='type-id-684'/>
<parameter type-id='type-id-6'/>
<return type-id='type-id-4'/>
</function-decl>
<function-decl name='_PyPegen_add_type_comment_to_arg' filepath='Parser/pegen.h' line='295' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-685'/>
<parameter type-id='type-id-684'/>
- <parameter type-id='type-id-686'/>
- <return type-id='type-id-684'/>
+ <parameter type-id='type-id-683'/>
+ <parameter type-id='type-id-685'/>
+ <return type-id='type-id-683'/>
</function-decl>
<function-decl name='_PyPegen_singleton_seq' filepath='Parser/pegen.h' line='297' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-685'/>
+ <parameter type-id='type-id-684'/>
<parameter type-id='type-id-29'/>
- <return type-id='type-id-713'/>
+ <return type-id='type-id-712'/>
</function-decl>
<function-decl name='_PyPegen_seq_insert_in_front' filepath='Parser/pegen.h' line='298' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-685'/>
+ <parameter type-id='type-id-684'/>
<parameter type-id='type-id-29'/>
- <parameter type-id='type-id-713'/>
- <return type-id='type-id-713'/>
+ <parameter type-id='type-id-712'/>
+ <return type-id='type-id-712'/>
</function-decl>
<function-decl name='_PyPegen_seq_append_to_end' filepath='Parser/pegen.h' line='299' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-685'/>
- <parameter type-id='type-id-713'/>
+ <parameter type-id='type-id-684'/>
+ <parameter type-id='type-id-712'/>
<parameter type-id='type-id-29'/>
- <return type-id='type-id-713'/>
+ <return type-id='type-id-712'/>
</function-decl>
<function-decl name='_PyPegen_seq_flatten' filepath='Parser/pegen.h' line='300' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-685'/>
- <parameter type-id='type-id-713'/>
- <return type-id='type-id-713'/>
+ <parameter type-id='type-id-684'/>
+ <parameter type-id='type-id-712'/>
+ <return type-id='type-id-712'/>
</function-decl>
<function-decl name='_PyPegen_join_names_with_dot' filepath='Parser/pegen.h' line='301' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-685'/>
- <parameter type-id='type-id-610'/>
- <parameter type-id='type-id-610'/>
- <return type-id='type-id-610'/>
+ <parameter type-id='type-id-684'/>
+ <parameter type-id='type-id-609'/>
+ <parameter type-id='type-id-609'/>
+ <return type-id='type-id-609'/>
</function-decl>
<function-decl name='_PyPegen_seq_count_dots' filepath='Parser/pegen.h' line='302' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-713'/>
+ <parameter type-id='type-id-712'/>
<return type-id='type-id-5'/>
</function-decl>
<function-decl name='_PyPegen_alias_for_star' filepath='Parser/pegen.h' line='303' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-685'/>
+ <parameter type-id='type-id-684'/>
<parameter type-id='type-id-5'/>
<parameter type-id='type-id-5'/>
<parameter type-id='type-id-5'/>
<parameter type-id='type-id-5'/>
- <parameter type-id='type-id-680'/>
- <return type-id='type-id-552'/>
+ <parameter type-id='type-id-679'/>
+ <return type-id='type-id-551'/>
</function-decl>
<function-decl name='_PyPegen_map_names_to_ids' filepath='Parser/pegen.h' line='304' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-685'/>
- <parameter type-id='type-id-611'/>
- <return type-id='type-id-643'/>
+ <parameter type-id='type-id-684'/>
+ <parameter type-id='type-id-610'/>
+ <return type-id='type-id-642'/>
</function-decl>
<function-decl name='_PyPegen_cmpop_expr_pair' filepath='Parser/pegen.h' line='305' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-685'/>
- <parameter type-id='type-id-702'/>
- <parameter type-id='type-id-610'/>
- <return type-id='type-id-725'/>
+ <parameter type-id='type-id-684'/>
+ <parameter type-id='type-id-701'/>
+ <parameter type-id='type-id-609'/>
+ <return type-id='type-id-724'/>
</function-decl>
<function-decl name='_PyPegen_get_cmpops' filepath='Parser/pegen.h' line='306' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-685'/>
- <parameter type-id='type-id-713'/>
- <return type-id='type-id-681'/>
+ <parameter type-id='type-id-684'/>
+ <parameter type-id='type-id-712'/>
+ <return type-id='type-id-680'/>
</function-decl>
<function-decl name='_PyPegen_get_exprs' filepath='Parser/pegen.h' line='307' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-685'/>
- <parameter type-id='type-id-713'/>
- <return type-id='type-id-611'/>
+ <parameter type-id='type-id-684'/>
+ <parameter type-id='type-id-712'/>
+ <return type-id='type-id-610'/>
</function-decl>
<function-decl name='_PyPegen_set_expr_context' filepath='Parser/pegen.h' line='308' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-685'/>
- <parameter type-id='type-id-610'/>
- <parameter type-id='type-id-683'/>
- <return type-id='type-id-610'/>
+ <parameter type-id='type-id-684'/>
+ <parameter type-id='type-id-609'/>
+ <parameter type-id='type-id-682'/>
+ <return type-id='type-id-609'/>
</function-decl>
<function-decl name='_PyPegen_key_value_pair' filepath='Parser/pegen.h' line='309' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-685'/>
- <parameter type-id='type-id-610'/>
- <parameter type-id='type-id-610'/>
- <return type-id='type-id-727'/>
+ <parameter type-id='type-id-684'/>
+ <parameter type-id='type-id-609'/>
+ <parameter type-id='type-id-609'/>
+ <return type-id='type-id-726'/>
</function-decl>
<function-decl name='_PyPegen_get_keys' filepath='Parser/pegen.h' line='310' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-685'/>
- <parameter type-id='type-id-713'/>
- <return type-id='type-id-611'/>
+ <parameter type-id='type-id-684'/>
+ <parameter type-id='type-id-712'/>
+ <return type-id='type-id-610'/>
</function-decl>
<function-decl name='_PyPegen_get_values' filepath='Parser/pegen.h' line='311' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-685'/>
- <parameter type-id='type-id-713'/>
- <return type-id='type-id-611'/>
+ <parameter type-id='type-id-684'/>
+ <parameter type-id='type-id-712'/>
+ <return type-id='type-id-610'/>
</function-decl>
<function-decl name='_PyPegen_key_pattern_pair' filepath='Parser/pegen.h' line='312' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-685'/>
- <parameter type-id='type-id-610'/>
- <parameter type-id='type-id-558'/>
- <return type-id='type-id-726'/>
+ <parameter type-id='type-id-684'/>
+ <parameter type-id='type-id-609'/>
+ <parameter type-id='type-id-557'/>
+ <return type-id='type-id-725'/>
</function-decl>
<function-decl name='_PyPegen_get_pattern_keys' filepath='Parser/pegen.h' line='313' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-685'/>
- <parameter type-id='type-id-713'/>
- <return type-id='type-id-611'/>
+ <parameter type-id='type-id-684'/>
+ <parameter type-id='type-id-712'/>
+ <return type-id='type-id-610'/>
</function-decl>
<function-decl name='_PyPegen_get_patterns' filepath='Parser/pegen.h' line='314' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-685'/>
- <parameter type-id='type-id-713'/>
- <return type-id='type-id-661'/>
+ <parameter type-id='type-id-684'/>
+ <parameter type-id='type-id-712'/>
+ <return type-id='type-id-660'/>
</function-decl>
<function-decl name='_PyPegen_name_default_pair' filepath='Parser/pegen.h' line='315' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-685'/>
<parameter type-id='type-id-684'/>
- <parameter type-id='type-id-610'/>
- <parameter type-id='type-id-686'/>
- <return type-id='type-id-729'/>
+ <parameter type-id='type-id-683'/>
+ <parameter type-id='type-id-609'/>
+ <parameter type-id='type-id-685'/>
+ <return type-id='type-id-728'/>
</function-decl>
<function-decl name='_PyPegen_slash_with_default' filepath='Parser/pegen.h' line='316' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-685'/>
- <parameter type-id='type-id-682'/>
- <parameter type-id='type-id-713'/>
- <return type-id='type-id-731'/>
+ <parameter type-id='type-id-684'/>
+ <parameter type-id='type-id-681'/>
+ <parameter type-id='type-id-712'/>
+ <return type-id='type-id-730'/>
</function-decl>
<function-decl name='_PyPegen_star_etc' filepath='Parser/pegen.h' line='317' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-685'/>
<parameter type-id='type-id-684'/>
- <parameter type-id='type-id-713'/>
- <parameter type-id='type-id-684'/>
- <return type-id='type-id-732'/>
+ <parameter type-id='type-id-683'/>
+ <parameter type-id='type-id-712'/>
+ <parameter type-id='type-id-683'/>
+ <return type-id='type-id-731'/>
</function-decl>
<function-decl name='_PyPegen_make_arguments' filepath='Parser/pegen.h' line='318' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-685'/>
- <parameter type-id='type-id-682'/>
+ <parameter type-id='type-id-684'/>
+ <parameter type-id='type-id-681'/>
+ <parameter type-id='type-id-730'/>
+ <parameter type-id='type-id-681'/>
+ <parameter type-id='type-id-712'/>
<parameter type-id='type-id-731'/>
- <parameter type-id='type-id-682'/>
- <parameter type-id='type-id-713'/>
- <parameter type-id='type-id-732'/>
- <return type-id='type-id-634'/>
+ <return type-id='type-id-633'/>
</function-decl>
<function-decl name='_PyPegen_empty_arguments' filepath='Parser/pegen.h' line='320' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-685'/>
- <return type-id='type-id-634'/>
+ <parameter type-id='type-id-684'/>
+ <return type-id='type-id-633'/>
</function-decl>
<function-decl name='_PyPegen_formatted_value' filepath='Parser/pegen.h' line='321' column='1' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-684'/>
+ <parameter type-id='type-id-609'/>
+ <parameter type-id='type-id-685'/>
+ <parameter type-id='type-id-729'/>
+ <parameter type-id='type-id-729'/>
<parameter type-id='type-id-685'/>
- <parameter type-id='type-id-610'/>
- <parameter type-id='type-id-686'/>
- <parameter type-id='type-id-730'/>
- <parameter type-id='type-id-730'/>
- <parameter type-id='type-id-686'/>
<parameter type-id='type-id-5'/>
<parameter type-id='type-id-5'/>
<parameter type-id='type-id-5'/>
<parameter type-id='type-id-5'/>
- <parameter type-id='type-id-680'/>
- <return type-id='type-id-610'/>
+ <parameter type-id='type-id-679'/>
+ <return type-id='type-id-609'/>
</function-decl>
<function-decl name='_PyPegen_augoperator' filepath='Parser/pegen.h' line='323' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-685'/>
- <parameter type-id='type-id-638'/>
- <return type-id='type-id-724'/>
+ <parameter type-id='type-id-684'/>
+ <parameter type-id='type-id-637'/>
+ <return type-id='type-id-723'/>
</function-decl>
<function-decl name='_PyPegen_function_def_decorators' filepath='Parser/pegen.h' line='324' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-685'/>
- <parameter type-id='type-id-611'/>
- <parameter type-id='type-id-560'/>
- <return type-id='type-id-560'/>
+ <parameter type-id='type-id-684'/>
+ <parameter type-id='type-id-610'/>
+ <parameter type-id='type-id-559'/>
+ <return type-id='type-id-559'/>
</function-decl>
<function-decl name='_PyPegen_class_def_decorators' filepath='Parser/pegen.h' line='325' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-685'/>
- <parameter type-id='type-id-611'/>
- <parameter type-id='type-id-560'/>
- <return type-id='type-id-560'/>
+ <parameter type-id='type-id-684'/>
+ <parameter type-id='type-id-610'/>
+ <parameter type-id='type-id-559'/>
+ <return type-id='type-id-559'/>
</function-decl>
<function-decl name='_PyPegen_keyword_or_starred' filepath='Parser/pegen.h' line='326' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-685'/>
+ <parameter type-id='type-id-684'/>
<parameter type-id='type-id-29'/>
<parameter type-id='type-id-5'/>
- <return type-id='type-id-728'/>
+ <return type-id='type-id-727'/>
</function-decl>
<function-decl name='_PyPegen_seq_extract_starred_exprs' filepath='Parser/pegen.h' line='327' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-685'/>
- <parameter type-id='type-id-713'/>
- <return type-id='type-id-611'/>
+ <parameter type-id='type-id-684'/>
+ <parameter type-id='type-id-712'/>
+ <return type-id='type-id-610'/>
</function-decl>
<function-decl name='_PyPegen_seq_delete_starred_exprs' filepath='Parser/pegen.h' line='328' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-685'/>
- <parameter type-id='type-id-713'/>
- <return type-id='type-id-637'/>
+ <parameter type-id='type-id-684'/>
+ <parameter type-id='type-id-712'/>
+ <return type-id='type-id-636'/>
</function-decl>
<function-decl name='_PyPegen_collect_call_seqs' filepath='Parser/pegen.h' line='329' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-685'/>
- <parameter type-id='type-id-611'/>
- <parameter type-id='type-id-713'/>
+ <parameter type-id='type-id-684'/>
+ <parameter type-id='type-id-610'/>
+ <parameter type-id='type-id-712'/>
<parameter type-id='type-id-5'/>
<parameter type-id='type-id-5'/>
<parameter type-id='type-id-5'/>
<parameter type-id='type-id-5'/>
- <parameter type-id='type-id-680'/>
- <return type-id='type-id-610'/>
+ <parameter type-id='type-id-679'/>
+ <return type-id='type-id-609'/>
</function-decl>
<function-decl name='_PyPegen_constant_from_token' filepath='Parser/pegen.h' line='332' column='1' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-684'/>
<parameter type-id='type-id-685'/>
- <parameter type-id='type-id-686'/>
- <return type-id='type-id-610'/>
+ <return type-id='type-id-609'/>
</function-decl>
<function-decl name='_PyPegen_decoded_constant_from_token' filepath='Parser/pegen.h' line='333' column='1' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-684'/>
<parameter type-id='type-id-685'/>
- <parameter type-id='type-id-686'/>
- <return type-id='type-id-610'/>
+ <return type-id='type-id-609'/>
</function-decl>
<function-decl name='_PyPegen_constant_from_string' filepath='Parser/pegen.h' line='334' column='1' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-684'/>
<parameter type-id='type-id-685'/>
- <parameter type-id='type-id-686'/>
- <return type-id='type-id-610'/>
+ <return type-id='type-id-609'/>
</function-decl>
<function-decl name='_PyPegen_concatenate_strings' filepath='Parser/pegen.h' line='335' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-685'/>
- <parameter type-id='type-id-611'/>
+ <parameter type-id='type-id-684'/>
+ <parameter type-id='type-id-610'/>
<parameter type-id='type-id-5'/>
<parameter type-id='type-id-5'/>
<parameter type-id='type-id-5'/>
<parameter type-id='type-id-5'/>
- <parameter type-id='type-id-680'/>
- <return type-id='type-id-610'/>
+ <parameter type-id='type-id-679'/>
+ <return type-id='type-id-609'/>
</function-decl>
<function-decl name='_PyPegen_ensure_imaginary' filepath='Parser/pegen.h' line='337' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-685'/>
- <parameter type-id='type-id-610'/>
- <return type-id='type-id-610'/>
+ <parameter type-id='type-id-684'/>
+ <parameter type-id='type-id-609'/>
+ <return type-id='type-id-609'/>
</function-decl>
<function-decl name='_PyPegen_ensure_real' filepath='Parser/pegen.h' line='338' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-685'/>
- <parameter type-id='type-id-610'/>
- <return type-id='type-id-610'/>
+ <parameter type-id='type-id-684'/>
+ <parameter type-id='type-id-609'/>
+ <return type-id='type-id-609'/>
</function-decl>
<function-decl name='_PyPegen_join_sequences' filepath='Parser/pegen.h' line='339' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-685'/>
- <parameter type-id='type-id-713'/>
- <parameter type-id='type-id-713'/>
- <return type-id='type-id-713'/>
+ <parameter type-id='type-id-684'/>
+ <parameter type-id='type-id-712'/>
+ <parameter type-id='type-id-712'/>
+ <return type-id='type-id-712'/>
</function-decl>
<function-decl name='_PyPegen_check_barry_as_flufl' filepath='Parser/pegen.h' line='340' column='1' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-684'/>
<parameter type-id='type-id-685'/>
- <parameter type-id='type-id-686'/>
<return type-id='type-id-5'/>
</function-decl>
<function-decl name='_PyPegen_check_legacy_stmt' filepath='Parser/pegen.h' line='341' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-685'/>
- <parameter type-id='type-id-610'/>
+ <parameter type-id='type-id-684'/>
+ <parameter type-id='type-id-609'/>
<return type-id='type-id-5'/>
</function-decl>
<function-decl name='_PyPegen_check_fstring_conversion' filepath='Parser/pegen.h' line='342' column='1' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-684'/>
<parameter type-id='type-id-685'/>
- <parameter type-id='type-id-686'/>
- <parameter type-id='type-id-610'/>
- <return type-id='type-id-730'/>
+ <parameter type-id='type-id-609'/>
+ <return type-id='type-id-729'/>
</function-decl>
<function-decl name='_PyPegen_setup_full_format_spec' filepath='Parser/pegen.h' line='343' column='1' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-684'/>
<parameter type-id='type-id-685'/>
- <parameter type-id='type-id-686'/>
- <parameter type-id='type-id-611'/>
+ <parameter type-id='type-id-610'/>
<parameter type-id='type-id-5'/>
<parameter type-id='type-id-5'/>
<parameter type-id='type-id-5'/>
<parameter type-id='type-id-5'/>
- <parameter type-id='type-id-680'/>
- <return type-id='type-id-730'/>
+ <parameter type-id='type-id-679'/>
+ <return type-id='type-id-729'/>
</function-decl>
<function-decl name='_PyPegen_make_module' filepath='Parser/pegen.h' line='345' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-685'/>
- <parameter type-id='type-id-608'/>
- <return type-id='type-id-576'/>
+ <parameter type-id='type-id-684'/>
+ <parameter type-id='type-id-607'/>
+ <return type-id='type-id-575'/>
</function-decl>
<function-decl name='_PyPegen_arguments_parsing_error' filepath='Parser/pegen.h' line='346' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-685'/>
- <parameter type-id='type-id-610'/>
+ <parameter type-id='type-id-684'/>
+ <parameter type-id='type-id-609'/>
<return type-id='type-id-29'/>
</function-decl>
<function-decl name='_PyPegen_get_last_comprehension_item' filepath='Parser/pegen.h' line='347' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-744'/>
- <return type-id='type-id-610'/>
+ <parameter type-id='type-id-743'/>
+ <return type-id='type-id-609'/>
</function-decl>
<function-decl name='_PyPegen_nonparen_genexp_in_call' filepath='Parser/pegen.h' line='348' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-685'/>
- <parameter type-id='type-id-610'/>
- <parameter type-id='type-id-743'/>
+ <parameter type-id='type-id-684'/>
+ <parameter type-id='type-id-609'/>
+ <parameter type-id='type-id-742'/>
<return type-id='type-id-29'/>
</function-decl>
<function-decl name='_PyPegen_interactive_exit' filepath='Parser/pegen.h' line='359' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-685'/>
- <return type-id='type-id-608'/>
+ <parameter type-id='type-id-684'/>
+ <return type-id='type-id-607'/>
</function-decl>
<function-decl name='_PyPegen_joined_str' filepath='Parser/pegen.h' line='362' column='1' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-684'/>
<parameter type-id='type-id-685'/>
- <parameter type-id='type-id-686'/>
- <parameter type-id='type-id-611'/>
- <parameter type-id='type-id-686'/>
- <return type-id='type-id-610'/>
- </function-decl>
- <function-type size-in-bits='64' id='type-id-733'>
+ <parameter type-id='type-id-610'/>
<parameter type-id='type-id-685'/>
+ <return type-id='type-id-609'/>
+ </function-decl>
+ <function-type size-in-bits='64' id='type-id-732'>
+ <parameter type-id='type-id-684'/>
<parameter type-id='type-id-5'/>
- <return type-id='type-id-686'/>
+ <return type-id='type-id-685'/>
</function-type>
- <function-type size-in-bits='64' id='type-id-735'>
- <parameter type-id='type-id-685'/>
- <return type-id='type-id-610'/>
+ <function-type size-in-bits='64' id='type-id-734'>
+ <parameter type-id='type-id-684'/>
+ <return type-id='type-id-609'/>
</function-type>
- <function-type size-in-bits='64' id='type-id-737'>
- <parameter type-id='type-id-685'/>
+ <function-type size-in-bits='64' id='type-id-736'>
+ <parameter type-id='type-id-684'/>
<parameter type-id='type-id-6'/>
- <return type-id='type-id-610'/>
+ <return type-id='type-id-609'/>
</function-type>
- <function-type size-in-bits='64' id='type-id-739'>
- <parameter type-id='type-id-685'/>
+ <function-type size-in-bits='64' id='type-id-738'>
+ <parameter type-id='type-id-684'/>
<return type-id='type-id-29'/>
</function-type>
</abi-instr>
- <abi-instr address-size='64' path='Parser/peg_api.c' comp-dir-path='/src' language='LANG_C11'>
- <class-decl name='PyCompilerFlags' size-in-bits='64' is-struct='yes' naming-typedef-id='type-id-746' visibility='default' filepath='./Include/cpython/compile.h' line='27' column='1' id='type-id-747'>
+ <abi-instr address-size='64' path='Parser/peg_api.c' comp-dir-path='/home/runner/work/cpython/cpython' language='LANG_C11'>
+ <class-decl name='PyCompilerFlags' size-in-bits='64' is-struct='yes' naming-typedef-id='type-id-745' visibility='default' filepath='./Include/cpython/compile.h' line='27' column='1' id='type-id-746'>
<data-member access='public' layout-offset-in-bits='0'>
<var-decl name='cf_flags' type-id='type-id-5' visibility='default' filepath='./Include/cpython/compile.h' line='28' column='1'/>
</data-member>
@@ -13401,8 +13389,8 @@
<var-decl name='cf_feature_version' type-id='type-id-5' visibility='default' filepath='./Include/cpython/compile.h' line='29' column='1'/>
</data-member>
</class-decl>
- <typedef-decl name='PyCompilerFlags' type-id='type-id-747' filepath='./Include/cpython/compile.h' line='30' column='1' id='type-id-746'/>
- <pointer-type-def type-id='type-id-746' size-in-bits='64' id='type-id-207'/>
+ <typedef-decl name='PyCompilerFlags' type-id='type-id-746' filepath='./Include/cpython/compile.h' line='30' column='1' id='type-id-745'/>
+ <pointer-type-def type-id='type-id-745' size-in-bits='64' id='type-id-207'/>
<function-decl name='PySys_Audit' mangled-name='PySys_Audit' filepath='./Include/sysmodule.h' line='25' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PySys_Audit'>
<parameter type-id='type-id-6'/>
<parameter type-id='type-id-6'/>
@@ -13419,147 +13407,147 @@
<parameter type-id='type-id-207'/>
<parameter type-id='type-id-175'/>
<parameter type-id='type-id-236'/>
- <parameter type-id='type-id-680'/>
- <return type-id='type-id-576'/>
+ <parameter type-id='type-id-679'/>
+ <return type-id='type-id-575'/>
</function-decl>
<function-decl name='_PyPegen_run_parser_from_string' filepath='Parser/pegen.h' line='358' column='1' visibility='default' binding='global' size-in-bits='64'>
<parameter type-id='type-id-6'/>
<parameter type-id='type-id-5'/>
<parameter type-id='type-id-4'/>
<parameter type-id='type-id-207'/>
- <parameter type-id='type-id-680'/>
- <return type-id='type-id-576'/>
+ <parameter type-id='type-id-679'/>
+ <return type-id='type-id-575'/>
</function-decl>
</abi-instr>
- <abi-instr address-size='64' path='Parser/pegen.c' comp-dir-path='/src' language='LANG_C11'>
- <array-type-def dimensions='1' type-id='type-id-748' size-in-bits='512' id='type-id-749'>
- <subrange length='8' type-id='type-id-2' id='type-id-518'/>
+ <abi-instr address-size='64' path='Parser/pegen.c' comp-dir-path='/home/runner/work/cpython/cpython' language='LANG_C11'>
+ <array-type-def dimensions='1' type-id='type-id-747' size-in-bits='512' id='type-id-748'>
+ <subrange length='8' type-id='type-id-2' id='type-id-517'/>
</array-type-def>
- <array-type-def dimensions='1' type-id='type-id-750' size-in-bits='5120' id='type-id-751'>
+ <array-type-def dimensions='1' type-id='type-id-749' size-in-bits='5120' id='type-id-750'>
<subrange length='80' type-id='type-id-2' id='type-id-415'/>
</array-type-def>
- <array-type-def dimensions='1' type-id='type-id-325' size-in-bits='512' id='type-id-752'>
- <subrange length='8' type-id='type-id-2' id='type-id-518'/>
+ <array-type-def dimensions='1' type-id='type-id-325' size-in-bits='512' id='type-id-751'>
+ <subrange length='8' type-id='type-id-2' id='type-id-517'/>
</array-type-def>
<array-type-def dimensions='1' type-id='type-id-414' size-in-bits='5120' id='type-id-413'>
<subrange length='80' type-id='type-id-2' id='type-id-415'/>
</array-type-def>
- <array-type-def dimensions='1' type-id='type-id-334' size-in-bits='5120' id='type-id-753'>
+ <array-type-def dimensions='1' type-id='type-id-334' size-in-bits='5120' id='type-id-752'>
<subrange length='80' type-id='type-id-2' id='type-id-415'/>
</array-type-def>
- <array-type-def dimensions='1' type-id='type-id-337' size-in-bits='512' id='type-id-754'>
- <subrange length='8' type-id='type-id-2' id='type-id-518'/>
+ <array-type-def dimensions='1' type-id='type-id-337' size-in-bits='512' id='type-id-753'>
+ <subrange length='8' type-id='type-id-2' id='type-id-517'/>
</array-type-def>
- <array-type-def dimensions='1' type-id='type-id-352' size-in-bits='512' id='type-id-755'>
- <subrange length='8' type-id='type-id-2' id='type-id-518'/>
+ <array-type-def dimensions='1' type-id='type-id-352' size-in-bits='512' id='type-id-754'>
+ <subrange length='8' type-id='type-id-2' id='type-id-517'/>
</array-type-def>
- <array-type-def dimensions='1' type-id='type-id-258' size-in-bits='5120' id='type-id-756'>
+ <array-type-def dimensions='1' type-id='type-id-258' size-in-bits='5120' id='type-id-755'>
<subrange length='80' type-id='type-id-2' id='type-id-415'/>
</array-type-def>
- <array-type-def dimensions='1' type-id='type-id-249' size-in-bits='67072' id='type-id-757'>
- <subrange length='262' type-id='type-id-2' id='type-id-758'/>
+ <array-type-def dimensions='1' type-id='type-id-249' size-in-bits='67072' id='type-id-756'>
+ <subrange length='262' type-id='type-id-2' id='type-id-757'/>
</array-type-def>
<array-type-def dimensions='1' type-id='type-id-4' size-in-bits='64' id='type-id-358'>
<subrange length='1' type-id='type-id-2' id='type-id-428'/>
</array-type-def>
- <array-type-def dimensions='1' type-id='type-id-4' size-in-bits='16256' id='type-id-759'>
- <subrange length='254' type-id='type-id-2' id='type-id-760'/>
+ <array-type-def dimensions='1' type-id='type-id-4' size-in-bits='16256' id='type-id-758'>
+ <subrange length='254' type-id='type-id-2' id='type-id-759'/>
</array-type-def>
- <array-type-def dimensions='1' type-id='type-id-4' size-in-bits='512' id='type-id-761'>
- <subrange length='8' type-id='type-id-2' id='type-id-518'/>
+ <array-type-def dimensions='1' type-id='type-id-4' size-in-bits='512' id='type-id-760'>
+ <subrange length='8' type-id='type-id-2' id='type-id-517'/>
</array-type-def>
- <array-type-def dimensions='2' type-id='type-id-4' size-in-bits='8704' id='type-id-762'>
- <subrange length='8' type-id='type-id-2' id='type-id-518'/>
- <subrange length='17' type-id='type-id-2' id='type-id-763'/>
+ <array-type-def dimensions='2' type-id='type-id-4' size-in-bits='8704' id='type-id-761'>
+ <subrange length='8' type-id='type-id-2' id='type-id-517'/>
+ <subrange length='17' type-id='type-id-2' id='type-id-762'/>
</array-type-def>
- <array-type-def dimensions='1' type-id='type-id-764' size-in-bits='1280' id='type-id-765'>
- <subrange length='20' type-id='type-id-2' id='type-id-766'/>
+ <array-type-def dimensions='1' type-id='type-id-763' size-in-bits='1280' id='type-id-764'>
+ <subrange length='20' type-id='type-id-2' id='type-id-765'/>
</array-type-def>
- <array-type-def dimensions='1' type-id='type-id-531' size-in-bits='512' id='type-id-767'>
- <subrange length='8' type-id='type-id-2' id='type-id-518'/>
+ <array-type-def dimensions='1' type-id='type-id-530' size-in-bits='512' id='type-id-766'>
+ <subrange length='8' type-id='type-id-2' id='type-id-517'/>
</array-type-def>
- <array-type-def dimensions='1' type-id='type-id-768' size-in-bits='32' id='type-id-769'>
+ <array-type-def dimensions='1' type-id='type-id-767' size-in-bits='32' id='type-id-768'>
<subrange length='1' type-id='type-id-2' id='type-id-428'/>
</array-type-def>
- <array-type-def dimensions='1' type-id='type-id-770' size-in-bits='5120' id='type-id-771'>
+ <array-type-def dimensions='1' type-id='type-id-769' size-in-bits='5120' id='type-id-770'>
<subrange length='80' type-id='type-id-2' id='type-id-415'/>
</array-type-def>
- <array-type-def dimensions='1' type-id='type-id-772' size-in-bits='64' id='type-id-773'>
+ <array-type-def dimensions='1' type-id='type-id-771' size-in-bits='64' id='type-id-772'>
<subrange length='1' type-id='type-id-2' id='type-id-428'/>
</array-type-def>
- <array-type-def dimensions='1' type-id='type-id-774' size-in-bits='128' id='type-id-775'>
+ <array-type-def dimensions='1' type-id='type-id-773' size-in-bits='128' id='type-id-774'>
<subrange length='1' type-id='type-id-2' id='type-id-428'/>
</array-type-def>
- <array-type-def dimensions='1' type-id='type-id-776' size-in-bits='65536' id='type-id-777'>
- <subrange length='128' type-id='type-id-2' id='type-id-533'/>
+ <array-type-def dimensions='1' type-id='type-id-775' size-in-bits='65536' id='type-id-776'>
+ <subrange length='128' type-id='type-id-2' id='type-id-532'/>
</array-type-def>
- <array-type-def dimensions='1' type-id='type-id-778' size-in-bits='49152' id='type-id-779'>
- <subrange length='128' type-id='type-id-2' id='type-id-533'/>
+ <array-type-def dimensions='1' type-id='type-id-777' size-in-bits='49152' id='type-id-778'>
+ <subrange length='128' type-id='type-id-2' id='type-id-532'/>
</array-type-def>
- <array-type-def dimensions='1' type-id='type-id-780' size-in-bits='26880' id='type-id-781'>
- <subrange length='210' type-id='type-id-2' id='type-id-782'/>
+ <array-type-def dimensions='1' type-id='type-id-779' size-in-bits='26880' id='type-id-780'>
+ <subrange length='210' type-id='type-id-2' id='type-id-781'/>
</array-type-def>
- <array-type-def dimensions='1' type-id='type-id-783' size-in-bits='98304' id='type-id-784'>
+ <array-type-def dimensions='1' type-id='type-id-782' size-in-bits='98304' id='type-id-783'>
<subrange length='256' type-id='type-id-2' id='type-id-68'/>
</array-type-def>
- <array-type-def dimensions='1' type-id='type-id-785' size-in-bits='8320' id='type-id-786'>
+ <array-type-def dimensions='1' type-id='type-id-784' size-in-bits='8320' id='type-id-785'>
<subrange length='65' type-id='type-id-2' id='type-id-70'/>
</array-type-def>
- <array-type-def dimensions='1' type-id='type-id-787' size-in-bits='524288' id='type-id-788'>
- <subrange length='4096' type-id='type-id-2' id='type-id-789'/>
+ <array-type-def dimensions='1' type-id='type-id-786' size-in-bits='524288' id='type-id-787'>
+ <subrange length='4096' type-id='type-id-2' id='type-id-788'/>
</array-type-def>
- <array-type-def dimensions='1' type-id='type-id-790' size-in-bits='57600' id='type-id-791'>
- <subrange length='300' type-id='type-id-2' id='type-id-792'/>
+ <array-type-def dimensions='1' type-id='type-id-789' size-in-bits='57600' id='type-id-790'>
+ <subrange length='300' type-id='type-id-2' id='type-id-791'/>
</array-type-def>
- <array-type-def dimensions='1' type-id='type-id-793' size-in-bits='1048576' id='type-id-794'>
- <subrange length='16384' type-id='type-id-2' id='type-id-795'/>
+ <array-type-def dimensions='1' type-id='type-id-792' size-in-bits='1048576' id='type-id-793'>
+ <subrange length='16384' type-id='type-id-2' id='type-id-794'/>
</array-type-def>
- <array-type-def dimensions='1' type-id='type-id-796' size-in-bits='2097152' id='type-id-797'>
- <subrange length='32768' type-id='type-id-2' id='type-id-798'/>
+ <array-type-def dimensions='1' type-id='type-id-795' size-in-bits='2097152' id='type-id-796'>
+ <subrange length='32768' type-id='type-id-2' id='type-id-797'/>
</array-type-def>
- <array-type-def dimensions='1' type-id='type-id-799' size-in-bits='2097152' id='type-id-800'>
- <subrange length='32768' type-id='type-id-2' id='type-id-798'/>
+ <array-type-def dimensions='1' type-id='type-id-798' size-in-bits='2097152' id='type-id-799'>
+ <subrange length='32768' type-id='type-id-2' id='type-id-797'/>
</array-type-def>
- <array-type-def dimensions='1' type-id='type-id-801' size-in-bits='4160' id='type-id-802'>
+ <array-type-def dimensions='1' type-id='type-id-800' size-in-bits='4160' id='type-id-801'>
<subrange length='65' type-id='type-id-2' id='type-id-70'/>
</array-type-def>
- <array-type-def dimensions='1' type-id='type-id-684' size-in-bits='64' id='type-id-803'>
+ <array-type-def dimensions='1' type-id='type-id-683' size-in-bits='64' id='type-id-802'>
<subrange length='1' type-id='type-id-2' id='type-id-428'/>
</array-type-def>
- <array-type-def dimensions='1' type-id='type-id-804' size-in-bits='2048' id='type-id-805'>
+ <array-type-def dimensions='1' type-id='type-id-803' size-in-bits='2048' id='type-id-804'>
<subrange length='32' type-id='type-id-2' id='type-id-66'/>
</array-type-def>
<type-decl name='bool' size-in-bits='8' id='type-id-351'/>
- <array-type-def dimensions='1' type-id='type-id-52' size-in-bits='8' id='type-id-806'>
+ <array-type-def dimensions='1' type-id='type-id-52' size-in-bits='8' id='type-id-805'>
<subrange length='1' type-id='type-id-2' id='type-id-428'/>
</array-type-def>
- <array-type-def dimensions='1' type-id='type-id-52' size-in-bits='1600' id='type-id-674'>
- <subrange length='200' type-id='type-id-2' id='type-id-807'/>
+ <array-type-def dimensions='1' type-id='type-id-52' size-in-bits='1600' id='type-id-673'>
+ <subrange length='200' type-id='type-id-2' id='type-id-806'/>
</array-type-def>
- <array-type-def dimensions='1' type-id='type-id-52' size-in-bits='160' id='type-id-808'>
- <subrange length='20' type-id='type-id-2' id='type-id-766'/>
+ <array-type-def dimensions='1' type-id='type-id-52' size-in-bits='160' id='type-id-807'>
+ <subrange length='20' type-id='type-id-2' id='type-id-765'/>
</array-type-def>
- <array-type-def dimensions='1' type-id='type-id-52' size-in-bits='192' id='type-id-809'>
- <subrange length='24' type-id='type-id-2' id='type-id-810'/>
+ <array-type-def dimensions='1' type-id='type-id-52' size-in-bits='192' id='type-id-808'>
+ <subrange length='24' type-id='type-id-2' id='type-id-809'/>
</array-type-def>
- <array-type-def dimensions='1' type-id='type-id-52' size-in-bits='320' id='type-id-811'>
- <subrange length='40' type-id='type-id-2' id='type-id-812'/>
+ <array-type-def dimensions='1' type-id='type-id-52' size-in-bits='320' id='type-id-810'>
+ <subrange length='40' type-id='type-id-2' id='type-id-811'/>
</array-type-def>
- <array-type-def dimensions='1' type-id='type-id-52' size-in-bits='384' id='type-id-813'>
- <subrange length='48' type-id='type-id-2' id='type-id-814'/>
+ <array-type-def dimensions='1' type-id='type-id-52' size-in-bits='384' id='type-id-812'>
+ <subrange length='48' type-id='type-id-2' id='type-id-813'/>
</array-type-def>
- <array-type-def dimensions='1' type-id='type-id-52' size-in-bits='32' id='type-id-815'>
+ <array-type-def dimensions='1' type-id='type-id-52' size-in-bits='32' id='type-id-814'>
<subrange length='4' type-id='type-id-2' id='type-id-227'/>
</array-type-def>
- <array-type-def dimensions='1' type-id='type-id-52' size-in-bits='64' id='type-id-816'>
- <subrange length='8' type-id='type-id-2' id='type-id-518'/>
+ <array-type-def dimensions='1' type-id='type-id-52' size-in-bits='64' id='type-id-815'>
+ <subrange length='8' type-id='type-id-2' id='type-id-517'/>
</array-type-def>
- <class-decl name='PyAsyncGenASend' is-struct='yes' visibility='default' is-declaration-only='yes' id='type-id-817'/>
- <class-decl name='_IO_codecvt' is-struct='yes' visibility='default' is-declaration-only='yes' id='type-id-818'/>
- <class-decl name='_IO_marker' is-struct='yes' visibility='default' is-declaration-only='yes' id='type-id-819'/>
- <class-decl name='_IO_wide_data' is-struct='yes' visibility='default' is-declaration-only='yes' id='type-id-820'/>
- <class-decl name='_PyAsyncGenWrappedValue' is-struct='yes' visibility='default' is-declaration-only='yes' id='type-id-821'/>
- <class-decl name='__va_list_tag' size-in-bits='192' is-struct='yes' visibility='default' id='type-id-822'>
+ <class-decl name='PyAsyncGenASend' is-struct='yes' visibility='default' is-declaration-only='yes' id='type-id-816'/>
+ <class-decl name='_IO_codecvt' is-struct='yes' visibility='default' is-declaration-only='yes' id='type-id-817'/>
+ <class-decl name='_IO_marker' is-struct='yes' visibility='default' is-declaration-only='yes' id='type-id-818'/>
+ <class-decl name='_IO_wide_data' is-struct='yes' visibility='default' is-declaration-only='yes' id='type-id-819'/>
+ <class-decl name='_PyAsyncGenWrappedValue' is-struct='yes' visibility='default' is-declaration-only='yes' id='type-id-820'/>
+ <class-decl name='__va_list_tag' size-in-bits='192' is-struct='yes' visibility='default' id='type-id-821'>
<data-member access='public' layout-offset-in-bits='0'>
<var-decl name='gp_offset' type-id='type-id-100' visibility='default'/>
</data-member>
@@ -13573,8 +13561,8 @@
<var-decl name='reg_save_area' type-id='type-id-29' visibility='default'/>
</data-member>
</class-decl>
- <class-decl name='_arena' is-struct='yes' visibility='default' is-declaration-only='yes' id='type-id-823'/>
- <class-decl name='_dictkeysobject' size-in-bits='256' is-struct='yes' visibility='default' filepath='./Include/internal/pycore_dict.h' line='140' column='1' id='type-id-514'>
+ <class-decl name='_arena' is-struct='yes' visibility='default' is-declaration-only='yes' id='type-id-822'/>
+ <class-decl name='_dictkeysobject' size-in-bits='256' is-struct='yes' visibility='default' filepath='./Include/internal/pycore_dict.h' line='140' column='1' id='type-id-513'>
<data-member access='public' layout-offset-in-bits='0'>
<var-decl name='dk_refcnt' type-id='type-id-7' visibility='default' filepath='./Include/internal/pycore_dict.h' line='141' column='1'/>
</data-member>
@@ -13600,7 +13588,7 @@
<var-decl name='dk_indices' type-id='type-id-265' visibility='default' filepath='./Include/internal/pycore_dict.h' line='180' column='1'/>
</data-member>
</class-decl>
- <class-decl name='_dictvalues' size-in-bits='128' is-struct='yes' visibility='default' filepath='./Include/internal/pycore_dict.h' line='196' column='1' id='type-id-824'>
+ <class-decl name='_dictvalues' size-in-bits='128' is-struct='yes' visibility='default' filepath='./Include/internal/pycore_dict.h' line='196' column='1' id='type-id-823'>
<data-member access='public' layout-offset-in-bits='0'>
<var-decl name='capacity' type-id='type-id-303' visibility='default' filepath='./Include/internal/pycore_dict.h' line='197' column='1'/>
</data-member>
@@ -13617,178 +13605,178 @@
<var-decl name='values' type-id='type-id-358' visibility='default' filepath='./Include/internal/pycore_dict.h' line='201' column='1'/>
</data-member>
</class-decl>
- <class-decl name='code_arena_st' is-struct='yes' visibility='default' is-declaration-only='yes' id='type-id-825'/>
- <array-type-def dimensions='1' type-id='type-id-744' size-in-bits='64' id='type-id-826'>
+ <class-decl name='code_arena_st' is-struct='yes' visibility='default' is-declaration-only='yes' id='type-id-824'/>
+ <array-type-def dimensions='1' type-id='type-id-743' size-in-bits='64' id='type-id-825'>
<subrange length='1' type-id='type-id-2' id='type-id-428'/>
</array-type-def>
- <array-type-def dimensions='1' type-id='type-id-372' size-in-bits='32' id='type-id-827'>
+ <array-type-def dimensions='1' type-id='type-id-372' size-in-bits='32' id='type-id-826'>
<subrange length='1' type-id='type-id-2' id='type-id-428'/>
</array-type-def>
<type-decl name='double' size-in-bits='64' id='type-id-171'/>
- <array-type-def dimensions='1' type-id='type-id-171' size-in-bits='18432' id='type-id-828'>
- <subrange length='288' type-id='type-id-2' id='type-id-829'/>
+ <array-type-def dimensions='1' type-id='type-id-171' size-in-bits='18432' id='type-id-827'>
+ <subrange length='288' type-id='type-id-2' id='type-id-828'/>
</array-type-def>
- <array-type-def dimensions='1' type-id='type-id-610' size-in-bits='64' id='type-id-830'>
+ <array-type-def dimensions='1' type-id='type-id-609' size-in-bits='64' id='type-id-829'>
<subrange length='1' type-id='type-id-2' id='type-id-428'/>
</array-type-def>
- <array-type-def dimensions='1' type-id='type-id-384' size-in-bits='16320' id='type-id-831'>
- <subrange length='255' type-id='type-id-2' id='type-id-832'/>
+ <array-type-def dimensions='1' type-id='type-id-384' size-in-bits='16320' id='type-id-830'>
+ <subrange length='255' type-id='type-id-2' id='type-id-831'/>
</array-type-def>
- <array-type-def dimensions='1' type-id='type-id-833' size-in-bits='384' id='type-id-834'>
- <subrange length='2' type-id='type-id-2' id='type-id-430'/>
+ <array-type-def dimensions='1' type-id='type-id-832' size-in-bits='576' id='type-id-833'>
+ <subrange length='3' type-id='type-id-2' id='type-id-834'/>
</array-type-def>
<array-type-def dimensions='1' type-id='type-id-835' size-in-bits='576' id='type-id-836'>
- <subrange length='3' type-id='type-id-2' id='type-id-837'/>
+ <subrange length='3' type-id='type-id-2' id='type-id-834'/>
</array-type-def>
- <array-type-def dimensions='1' type-id='type-id-5' size-in-bits='3200' id='type-id-673'>
- <subrange length='100' type-id='type-id-2' id='type-id-838'/>
+ <array-type-def dimensions='1' type-id='type-id-5' size-in-bits='3200' id='type-id-672'>
+ <subrange length='100' type-id='type-id-2' id='type-id-837'/>
</array-type-def>
- <array-type-def dimensions='1' type-id='type-id-5' size-in-bits='32' id='type-id-839'>
+ <array-type-def dimensions='1' type-id='type-id-5' size-in-bits='32' id='type-id-838'>
<subrange length='1' type-id='type-id-2' id='type-id-428'/>
</array-type-def>
- <array-type-def dimensions='1' type-id='type-id-5' size-in-bits='6400' id='type-id-675'>
- <subrange length='200' type-id='type-id-2' id='type-id-807'/>
+ <array-type-def dimensions='1' type-id='type-id-5' size-in-bits='6400' id='type-id-674'>
+ <subrange length='200' type-id='type-id-2' id='type-id-806'/>
</array-type-def>
- <array-type-def dimensions='1' type-id='type-id-5' size-in-bits='640' id='type-id-840'>
- <subrange length='20' type-id='type-id-2' id='type-id-766'/>
+ <array-type-def dimensions='1' type-id='type-id-5' size-in-bits='640' id='type-id-839'>
+ <subrange length='20' type-id='type-id-2' id='type-id-765'/>
</array-type-def>
- <array-type-def dimensions='1' type-id='type-id-5' size-in-bits='896' id='type-id-841'>
- <subrange length='28' type-id='type-id-2' id='type-id-842'/>
+ <array-type-def dimensions='1' type-id='type-id-5' size-in-bits='896' id='type-id-840'>
+ <subrange length='28' type-id='type-id-2' id='type-id-841'/>
</array-type-def>
- <array-type-def dimensions='1' type-id='type-id-745' size-in-bits='64' id='type-id-843'>
+ <array-type-def dimensions='1' type-id='type-id-744' size-in-bits='64' id='type-id-842'>
<subrange length='1' type-id='type-id-2' id='type-id-428'/>
</array-type-def>
<type-decl name='long int' size-in-bits='64' id='type-id-181'/>
<type-decl name='long long int' size-in-bits='64' id='type-id-376'/>
<type-decl name='long long unsigned int' size-in-bits='64' id='type-id-375'/>
- <array-type-def dimensions='1' type-id='type-id-399' size-in-bits='3840' id='type-id-844'>
- <subrange length='10' type-id='type-id-2' id='type-id-845'/>
+ <array-type-def dimensions='1' type-id='type-id-399' size-in-bits='3840' id='type-id-843'>
+ <subrange length='10' type-id='type-id-2' id='type-id-844'/>
</array-type-def>
- <array-type-def dimensions='1' type-id='type-id-399' size-in-bits='76800' id='type-id-846'>
- <subrange length='200' type-id='type-id-2' id='type-id-807'/>
+ <array-type-def dimensions='1' type-id='type-id-399' size-in-bits='76800' id='type-id-845'>
+ <subrange length='200' type-id='type-id-2' id='type-id-806'/>
</array-type-def>
- <array-type-def dimensions='1' type-id='type-id-847' size-in-bits='4096' id='type-id-848'>
- <subrange length='64' type-id='type-id-2' id='type-id-849'/>
+ <array-type-def dimensions='1' type-id='type-id-846' size-in-bits='4096' id='type-id-847'>
+ <subrange length='64' type-id='type-id-2' id='type-id-848'/>
</array-type-def>
- <array-type-def dimensions='1' type-id='type-id-850' size-in-bits='640' id='type-id-851'>
- <subrange length='10' type-id='type-id-2' id='type-id-845'/>
+ <array-type-def dimensions='1' type-id='type-id-849' size-in-bits='640' id='type-id-850'>
+ <subrange length='10' type-id='type-id-2' id='type-id-844'/>
</array-type-def>
<type-decl name='short int' size-in-bits='16' id='type-id-77'/>
- <type-decl name='signed char' size-in-bits='8' id='type-id-852'/>
- <array-type-def dimensions='1' type-id='type-id-853' size-in-bits='115200' id='type-id-679'>
- <subrange length='150' type-id='type-id-2' id='type-id-854'/>
+ <type-decl name='signed char' size-in-bits='8' id='type-id-851'/>
+ <array-type-def dimensions='1' type-id='type-id-852' size-in-bits='115200' id='type-id-678'>
+ <subrange length='150' type-id='type-id-2' id='type-id-853'/>
</array-type-def>
- <array-type-def dimensions='1' type-id='type-id-855' size-in-bits='96' id='type-id-856'>
+ <array-type-def dimensions='1' type-id='type-id-854' size-in-bits='96' id='type-id-855'>
<subrange length='1' type-id='type-id-2' id='type-id-428'/>
</array-type-def>
- <array-type-def dimensions='1' type-id='type-id-857' size-in-bits='786432' id='type-id-858'>
- <subrange length='4096' type-id='type-id-2' id='type-id-789'/>
+ <array-type-def dimensions='1' type-id='type-id-856' size-in-bits='786432' id='type-id-857'>
+ <subrange length='4096' type-id='type-id-2' id='type-id-788'/>
</array-type-def>
- <array-type-def dimensions='1' type-id='type-id-324' size-in-bits='64' id='type-id-859'>
+ <array-type-def dimensions='1' type-id='type-id-324' size-in-bits='64' id='type-id-858'>
<subrange length='2' type-id='type-id-2' id='type-id-430'/>
</array-type-def>
- <array-type-def dimensions='1' type-id='type-id-324' size-in-bits='256' id='type-id-860'>
- <subrange length='8' type-id='type-id-2' id='type-id-518'/>
+ <array-type-def dimensions='1' type-id='type-id-324' size-in-bits='256' id='type-id-859'>
+ <subrange length='8' type-id='type-id-2' id='type-id-517'/>
</array-type-def>
- <array-type-def dimensions='1' type-id='type-id-303' size-in-bits='80' id='type-id-861'>
- <subrange length='10' type-id='type-id-2' id='type-id-845'/>
+ <array-type-def dimensions='1' type-id='type-id-303' size-in-bits='80' id='type-id-860'>
+ <subrange length='10' type-id='type-id-2' id='type-id-844'/>
</array-type-def>
- <array-type-def dimensions='1' type-id='type-id-303' size-in-bits='88' id='type-id-862'>
- <subrange length='11' type-id='type-id-2' id='type-id-863'/>
+ <array-type-def dimensions='1' type-id='type-id-303' size-in-bits='88' id='type-id-861'>
+ <subrange length='11' type-id='type-id-2' id='type-id-862'/>
</array-type-def>
- <array-type-def dimensions='1' type-id='type-id-303' size-in-bits='96' id='type-id-864'>
- <subrange length='12' type-id='type-id-2' id='type-id-865'/>
+ <array-type-def dimensions='1' type-id='type-id-303' size-in-bits='96' id='type-id-863'>
+ <subrange length='12' type-id='type-id-2' id='type-id-864'/>
</array-type-def>
- <array-type-def dimensions='1' type-id='type-id-303' size-in-bits='104' id='type-id-866'>
- <subrange length='13' type-id='type-id-2' id='type-id-867'/>
+ <array-type-def dimensions='1' type-id='type-id-303' size-in-bits='104' id='type-id-865'>
+ <subrange length='13' type-id='type-id-2' id='type-id-866'/>
</array-type-def>
- <array-type-def dimensions='1' type-id='type-id-303' size-in-bits='112' id='type-id-868'>
- <subrange length='14' type-id='type-id-2' id='type-id-869'/>
+ <array-type-def dimensions='1' type-id='type-id-303' size-in-bits='112' id='type-id-867'>
+ <subrange length='14' type-id='type-id-2' id='type-id-868'/>
</array-type-def>
- <array-type-def dimensions='1' type-id='type-id-303' size-in-bits='120' id='type-id-870'>
- <subrange length='15' type-id='type-id-2' id='type-id-871'/>
+ <array-type-def dimensions='1' type-id='type-id-303' size-in-bits='120' id='type-id-869'>
+ <subrange length='15' type-id='type-id-2' id='type-id-870'/>
</array-type-def>
- <array-type-def dimensions='1' type-id='type-id-303' size-in-bits='128' id='type-id-872'>
+ <array-type-def dimensions='1' type-id='type-id-303' size-in-bits='128' id='type-id-871'>
<subrange length='16' type-id='type-id-2' id='type-id-63'/>
</array-type-def>
- <array-type-def dimensions='1' type-id='type-id-303' size-in-bits='136' id='type-id-873'>
- <subrange length='17' type-id='type-id-2' id='type-id-763'/>
+ <array-type-def dimensions='1' type-id='type-id-303' size-in-bits='136' id='type-id-872'>
+ <subrange length='17' type-id='type-id-2' id='type-id-762'/>
</array-type-def>
- <array-type-def dimensions='1' type-id='type-id-303' size-in-bits='144' id='type-id-874'>
- <subrange length='18' type-id='type-id-2' id='type-id-875'/>
+ <array-type-def dimensions='1' type-id='type-id-303' size-in-bits='144' id='type-id-873'>
+ <subrange length='18' type-id='type-id-2' id='type-id-874'/>
</array-type-def>
- <array-type-def dimensions='1' type-id='type-id-303' size-in-bits='152' id='type-id-876'>
- <subrange length='19' type-id='type-id-2' id='type-id-877'/>
+ <array-type-def dimensions='1' type-id='type-id-303' size-in-bits='152' id='type-id-875'>
+ <subrange length='19' type-id='type-id-2' id='type-id-876'/>
</array-type-def>
- <array-type-def dimensions='1' type-id='type-id-303' size-in-bits='8' id='type-id-878'>
+ <array-type-def dimensions='1' type-id='type-id-303' size-in-bits='8' id='type-id-877'>
<subrange length='1' type-id='type-id-2' id='type-id-428'/>
</array-type-def>
- <array-type-def dimensions='1' type-id='type-id-303' size-in-bits='160' id='type-id-879'>
- <subrange length='20' type-id='type-id-2' id='type-id-766'/>
+ <array-type-def dimensions='1' type-id='type-id-303' size-in-bits='160' id='type-id-878'>
+ <subrange length='20' type-id='type-id-2' id='type-id-765'/>
</array-type-def>
- <array-type-def dimensions='1' type-id='type-id-303' size-in-bits='168' id='type-id-880'>
- <subrange length='21' type-id='type-id-2' id='type-id-881'/>
+ <array-type-def dimensions='1' type-id='type-id-303' size-in-bits='168' id='type-id-879'>
+ <subrange length='21' type-id='type-id-2' id='type-id-880'/>
</array-type-def>
- <array-type-def dimensions='1' type-id='type-id-303' size-in-bits='176' id='type-id-882'>
- <subrange length='22' type-id='type-id-2' id='type-id-883'/>
+ <array-type-def dimensions='1' type-id='type-id-303' size-in-bits='176' id='type-id-881'>
+ <subrange length='22' type-id='type-id-2' id='type-id-882'/>
</array-type-def>
- <array-type-def dimensions='1' type-id='type-id-303' size-in-bits='184' id='type-id-884'>
- <subrange length='23' type-id='type-id-2' id='type-id-885'/>
+ <array-type-def dimensions='1' type-id='type-id-303' size-in-bits='184' id='type-id-883'>
+ <subrange length='23' type-id='type-id-2' id='type-id-884'/>
</array-type-def>
- <array-type-def dimensions='1' type-id='type-id-303' size-in-bits='192' id='type-id-886'>
- <subrange length='24' type-id='type-id-2' id='type-id-810'/>
+ <array-type-def dimensions='1' type-id='type-id-303' size-in-bits='192' id='type-id-885'>
+ <subrange length='24' type-id='type-id-2' id='type-id-809'/>
</array-type-def>
- <array-type-def dimensions='1' type-id='type-id-303' size-in-bits='200' id='type-id-887'>
- <subrange length='25' type-id='type-id-2' id='type-id-888'/>
+ <array-type-def dimensions='1' type-id='type-id-303' size-in-bits='200' id='type-id-886'>
+ <subrange length='25' type-id='type-id-2' id='type-id-887'/>
</array-type-def>
- <array-type-def dimensions='1' type-id='type-id-303' size-in-bits='208' id='type-id-889'>
- <subrange length='26' type-id='type-id-2' id='type-id-890'/>
+ <array-type-def dimensions='1' type-id='type-id-303' size-in-bits='208' id='type-id-888'>
+ <subrange length='26' type-id='type-id-2' id='type-id-889'/>
</array-type-def>
- <array-type-def dimensions='1' type-id='type-id-303' size-in-bits='224' id='type-id-891'>
- <subrange length='28' type-id='type-id-2' id='type-id-842'/>
+ <array-type-def dimensions='1' type-id='type-id-303' size-in-bits='224' id='type-id-890'>
+ <subrange length='28' type-id='type-id-2' id='type-id-841'/>
</array-type-def>
- <array-type-def dimensions='1' type-id='type-id-303' size-in-bits='16' id='type-id-892'>
+ <array-type-def dimensions='1' type-id='type-id-303' size-in-bits='16' id='type-id-891'>
<subrange length='2' type-id='type-id-2' id='type-id-430'/>
</array-type-def>
- <array-type-def dimensions='1' type-id='type-id-303' size-in-bits='248' id='type-id-893'>
- <subrange length='31' type-id='type-id-2' id='type-id-894'/>
+ <array-type-def dimensions='1' type-id='type-id-303' size-in-bits='248' id='type-id-892'>
+ <subrange length='31' type-id='type-id-2' id='type-id-893'/>
</array-type-def>
- <array-type-def dimensions='1' type-id='type-id-303' size-in-bits='288' id='type-id-895'>
+ <array-type-def dimensions='1' type-id='type-id-303' size-in-bits='288' id='type-id-894'>
<subrange length='36' type-id='type-id-2' id='type-id-424'/>
</array-type-def>
- <array-type-def dimensions='1' type-id='type-id-303' size-in-bits='24' id='type-id-896'>
- <subrange length='3' type-id='type-id-2' id='type-id-837'/>
+ <array-type-def dimensions='1' type-id='type-id-303' size-in-bits='24' id='type-id-895'>
+ <subrange length='3' type-id='type-id-2' id='type-id-834'/>
</array-type-def>
- <array-type-def dimensions='1' type-id='type-id-303' size-in-bits='32' id='type-id-897'>
+ <array-type-def dimensions='1' type-id='type-id-303' size-in-bits='32' id='type-id-896'>
<subrange length='4' type-id='type-id-2' id='type-id-227'/>
</array-type-def>
- <array-type-def dimensions='1' type-id='type-id-303' size-in-bits='40' id='type-id-898'>
- <subrange length='5' type-id='type-id-2' id='type-id-899'/>
+ <array-type-def dimensions='1' type-id='type-id-303' size-in-bits='40' id='type-id-897'>
+ <subrange length='5' type-id='type-id-2' id='type-id-898'/>
</array-type-def>
- <array-type-def dimensions='1' type-id='type-id-303' size-in-bits='48' id='type-id-900'>
+ <array-type-def dimensions='1' type-id='type-id-303' size-in-bits='48' id='type-id-899'>
<subrange length='6' type-id='type-id-2' id='type-id-390'/>
</array-type-def>
- <array-type-def dimensions='1' type-id='type-id-303' size-in-bits='56' id='type-id-901'>
- <subrange length='7' type-id='type-id-2' id='type-id-902'/>
+ <array-type-def dimensions='1' type-id='type-id-303' size-in-bits='56' id='type-id-900'>
+ <subrange length='7' type-id='type-id-2' id='type-id-901'/>
</array-type-def>
- <array-type-def dimensions='1' type-id='type-id-303' size-in-bits='64' id='type-id-903'>
- <subrange length='8' type-id='type-id-2' id='type-id-518'/>
+ <array-type-def dimensions='1' type-id='type-id-303' size-in-bits='64' id='type-id-902'>
+ <subrange length='8' type-id='type-id-2' id='type-id-517'/>
</array-type-def>
- <array-type-def dimensions='1' type-id='type-id-303' size-in-bits='72' id='type-id-904'>
- <subrange length='9' type-id='type-id-2' id='type-id-905'/>
+ <array-type-def dimensions='1' type-id='type-id-303' size-in-bits='72' id='type-id-903'>
+ <subrange length='9' type-id='type-id-2' id='type-id-904'/>
</array-type-def>
<type-decl name='unnamed-enum-underlying-type-32' is-anonymous='yes' size-in-bits='32' alignment-in-bits='32' id='type-id-31'/>
<type-decl name='unsigned char' size-in-bits='8' id='type-id-90'/>
<type-decl name='unsigned int' size-in-bits='32' id='type-id-100'/>
- <array-type-def dimensions='1' type-id='type-id-100' size-in-bits='64' id='type-id-906'>
+ <array-type-def dimensions='1' type-id='type-id-100' size-in-bits='64' id='type-id-905'>
<subrange length='2' type-id='type-id-2' id='type-id-430'/>
</array-type-def>
- <array-type-def dimensions='1' type-id='type-id-2' size-in-bits='1024' id='type-id-907'>
+ <array-type-def dimensions='1' type-id='type-id-2' size-in-bits='1024' id='type-id-906'>
<subrange length='16' type-id='type-id-2' id='type-id-63'/>
</array-type-def>
<type-decl name='unsigned short int' size-in-bits='16' id='type-id-22'/>
<type-decl name='void' id='type-id-3'/>
- <class-decl name='PyBytesObject' size-in-bits='320' is-struct='yes' naming-typedef-id='type-id-908' visibility='default' filepath='./Include/cpython/bytesobject.h' line='5' column='1' id='type-id-909'>
+ <class-decl name='PyBytesObject' size-in-bits='320' is-struct='yes' naming-typedef-id='type-id-907' visibility='default' filepath='./Include/cpython/bytesobject.h' line='5' column='1' id='type-id-908'>
<data-member access='public' layout-offset-in-bits='0'>
<var-decl name='ob_base' type-id='type-id-318' visibility='default' filepath='./Include/cpython/bytesobject.h' line='6' column='1'/>
</data-member>
@@ -13796,23 +13784,23 @@
<var-decl name='ob_shash' type-id='type-id-299' visibility='default' filepath='./Include/cpython/bytesobject.h' line='7' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='256'>
- <var-decl name='ob_sval' type-id='type-id-806' visibility='default' filepath='./Include/cpython/bytesobject.h' line='8' column='1'/>
+ <var-decl name='ob_sval' type-id='type-id-805' visibility='default' filepath='./Include/cpython/bytesobject.h' line='8' column='1'/>
</data-member>
</class-decl>
- <typedef-decl name='PyBytesObject' type-id='type-id-909' filepath='./Include/cpython/bytesobject.h' line='15' column='1' id='type-id-908'/>
- <class-decl name='_Py_LocalMonitors' size-in-bits='80' is-struct='yes' visibility='default' filepath='./Include/cpython/code.h' line='19' column='1' id='type-id-910'>
+ <typedef-decl name='PyBytesObject' type-id='type-id-908' filepath='./Include/cpython/bytesobject.h' line='15' column='1' id='type-id-907'/>
+ <class-decl name='_Py_LocalMonitors' size-in-bits='80' is-struct='yes' visibility='default' filepath='./Include/cpython/code.h' line='19' column='1' id='type-id-909'>
<data-member access='public' layout-offset-in-bits='0'>
- <var-decl name='tools' type-id='type-id-861' visibility='default' filepath='./Include/cpython/code.h' line='20' column='1'/>
+ <var-decl name='tools' type-id='type-id-860' visibility='default' filepath='./Include/cpython/code.h' line='20' column='1'/>
</data-member>
</class-decl>
- <typedef-decl name='_Py_LocalMonitors' type-id='type-id-910' filepath='./Include/cpython/code.h' line='21' column='1' id='type-id-911'/>
- <class-decl name='_Py_GlobalMonitors' size-in-bits='120' is-struct='yes' visibility='default' filepath='./Include/cpython/code.h' line='23' column='1' id='type-id-912'>
+ <typedef-decl name='_Py_LocalMonitors' type-id='type-id-909' filepath='./Include/cpython/code.h' line='21' column='1' id='type-id-910'/>
+ <class-decl name='_Py_GlobalMonitors' size-in-bits='120' is-struct='yes' visibility='default' filepath='./Include/cpython/code.h' line='23' column='1' id='type-id-911'>
<data-member access='public' layout-offset-in-bits='0'>
- <var-decl name='tools' type-id='type-id-870' visibility='default' filepath='./Include/cpython/code.h' line='24' column='1'/>
+ <var-decl name='tools' type-id='type-id-869' visibility='default' filepath='./Include/cpython/code.h' line='24' column='1'/>
</data-member>
</class-decl>
- <typedef-decl name='_Py_GlobalMonitors' type-id='type-id-912' filepath='./Include/cpython/code.h' line='25' column='1' id='type-id-913'/>
- <class-decl name='_PyCoCached' size-in-bits='256' is-struct='yes' naming-typedef-id='type-id-914' visibility='default' filepath='./Include/cpython/code.h' line='28' column='1' id='type-id-915'>
+ <typedef-decl name='_Py_GlobalMonitors' type-id='type-id-911' filepath='./Include/cpython/code.h' line='25' column='1' id='type-id-912'/>
+ <class-decl name='_PyCoCached' size-in-bits='256' is-struct='yes' naming-typedef-id='type-id-913' visibility='default' filepath='./Include/cpython/code.h' line='28' column='1' id='type-id-914'>
<data-member access='public' layout-offset-in-bits='0'>
<var-decl name='_co_code' type-id='type-id-4' visibility='default' filepath='./Include/cpython/code.h' line='29' column='1'/>
</data-member>
@@ -13826,8 +13814,8 @@
<var-decl name='_co_freevars' type-id='type-id-4' visibility='default' filepath='./Include/cpython/code.h' line='32' column='1'/>
</data-member>
</class-decl>
- <typedef-decl name='_PyCoCached' type-id='type-id-915' filepath='./Include/cpython/code.h' line='33' column='1' id='type-id-914'/>
- <class-decl name='_PyCoLineInstrumentationData' size-in-bits='16' is-struct='yes' naming-typedef-id='type-id-916' visibility='default' filepath='./Include/cpython/code.h' line='38' column='1' id='type-id-917'>
+ <typedef-decl name='_PyCoCached' type-id='type-id-914' filepath='./Include/cpython/code.h' line='33' column='1' id='type-id-913'/>
+ <class-decl name='_PyCoLineInstrumentationData' size-in-bits='16' is-struct='yes' naming-typedef-id='type-id-915' visibility='default' filepath='./Include/cpython/code.h' line='38' column='1' id='type-id-916'>
<data-member access='public' layout-offset-in-bits='0'>
<var-decl name='original_opcode' type-id='type-id-303' visibility='default' filepath='./Include/cpython/code.h' line='39' column='1'/>
</data-member>
@@ -13835,8 +13823,8 @@
<var-decl name='line_delta' type-id='type-id-357' visibility='default' filepath='./Include/cpython/code.h' line='40' column='1'/>
</data-member>
</class-decl>
- <typedef-decl name='_PyCoLineInstrumentationData' type-id='type-id-917' filepath='./Include/cpython/code.h' line='41' column='1' id='type-id-916'/>
- <class-decl name='_PyExecutorArray' size-in-bits='128' is-struct='yes' naming-typedef-id='type-id-918' visibility='default' filepath='./Include/cpython/code.h' line='44' column='1' id='type-id-919'>
+ <typedef-decl name='_PyCoLineInstrumentationData' type-id='type-id-916' filepath='./Include/cpython/code.h' line='41' column='1' id='type-id-915'/>
+ <class-decl name='_PyExecutorArray' size-in-bits='128' is-struct='yes' naming-typedef-id='type-id-917' visibility='default' filepath='./Include/cpython/code.h' line='44' column='1' id='type-id-918'>
<data-member access='public' layout-offset-in-bits='0'>
<var-decl name='size' type-id='type-id-5' visibility='default' filepath='./Include/cpython/code.h' line='45' column='1'/>
</data-member>
@@ -13844,35 +13832,35 @@
<var-decl name='capacity' type-id='type-id-5' visibility='default' filepath='./Include/cpython/code.h' line='46' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='64'>
- <var-decl name='executors' type-id='type-id-773' visibility='default' filepath='./Include/cpython/code.h' line='47' column='1'/>
+ <var-decl name='executors' type-id='type-id-772' visibility='default' filepath='./Include/cpython/code.h' line='47' column='1'/>
</data-member>
</class-decl>
- <typedef-decl name='_PyExecutorArray' type-id='type-id-919' filepath='./Include/cpython/code.h' line='48' column='1' id='type-id-918'/>
- <class-decl name='_PyCoMonitoringData' size-in-bits='512' is-struct='yes' naming-typedef-id='type-id-920' visibility='default' filepath='./Include/cpython/code.h' line='53' column='1' id='type-id-921'>
+ <typedef-decl name='_PyExecutorArray' type-id='type-id-918' filepath='./Include/cpython/code.h' line='48' column='1' id='type-id-917'/>
+ <class-decl name='_PyCoMonitoringData' size-in-bits='512' is-struct='yes' naming-typedef-id='type-id-919' visibility='default' filepath='./Include/cpython/code.h' line='53' column='1' id='type-id-920'>
<data-member access='public' layout-offset-in-bits='0'>
- <var-decl name='local_monitors' type-id='type-id-911' visibility='default' filepath='./Include/cpython/code.h' line='55' column='1'/>
+ <var-decl name='local_monitors' type-id='type-id-910' visibility='default' filepath='./Include/cpython/code.h' line='55' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='80'>
- <var-decl name='active_monitors' type-id='type-id-911' visibility='default' filepath='./Include/cpython/code.h' line='57' column='1'/>
+ <var-decl name='active_monitors' type-id='type-id-910' visibility='default' filepath='./Include/cpython/code.h' line='57' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='192'>
- <var-decl name='tools' type-id='type-id-922' visibility='default' filepath='./Include/cpython/code.h' line='59' column='1'/>
+ <var-decl name='tools' type-id='type-id-921' visibility='default' filepath='./Include/cpython/code.h' line='59' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='256'>
- <var-decl name='lines' type-id='type-id-923' visibility='default' filepath='./Include/cpython/code.h' line='61' column='1'/>
+ <var-decl name='lines' type-id='type-id-922' visibility='default' filepath='./Include/cpython/code.h' line='61' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='320'>
- <var-decl name='line_tools' type-id='type-id-922' visibility='default' filepath='./Include/cpython/code.h' line='63' column='1'/>
+ <var-decl name='line_tools' type-id='type-id-921' visibility='default' filepath='./Include/cpython/code.h' line='63' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='384'>
- <var-decl name='per_instruction_opcodes' type-id='type-id-922' visibility='default' filepath='./Include/cpython/code.h' line='66' column='1'/>
+ <var-decl name='per_instruction_opcodes' type-id='type-id-921' visibility='default' filepath='./Include/cpython/code.h' line='66' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='448'>
- <var-decl name='per_instruction_tools' type-id='type-id-922' visibility='default' filepath='./Include/cpython/code.h' line='68' column='1'/>
+ <var-decl name='per_instruction_tools' type-id='type-id-921' visibility='default' filepath='./Include/cpython/code.h' line='68' column='1'/>
</data-member>
</class-decl>
- <typedef-decl name='_PyCoMonitoringData' type-id='type-id-921' filepath='./Include/cpython/code.h' line='69' column='1' id='type-id-920'/>
- <class-decl name='PyCodeObject' size-in-bits='1664' is-struct='yes' visibility='default' filepath='./Include/cpython/code.h' line='140' column='1' id='type-id-924'>
+ <typedef-decl name='_PyCoMonitoringData' type-id='type-id-920' filepath='./Include/cpython/code.h' line='69' column='1' id='type-id-919'/>
+ <class-decl name='PyCodeObject' size-in-bits='1664' is-struct='yes' visibility='default' filepath='./Include/cpython/code.h' line='140' column='1' id='type-id-923'>
<data-member access='public' layout-offset-in-bits='0'>
<var-decl name='ob_base' type-id='type-id-318' visibility='default' filepath='./Include/cpython/code.h' line='140' column='1'/>
</data-member>
@@ -13943,16 +13931,16 @@
<var-decl name='co_weakreflist' type-id='type-id-4' visibility='default' filepath='./Include/cpython/code.h' line='140' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='1216'>
- <var-decl name='co_executors' type-id='type-id-925' visibility='default' filepath='./Include/cpython/code.h' line='140' column='1'/>
+ <var-decl name='co_executors' type-id='type-id-924' visibility='default' filepath='./Include/cpython/code.h' line='140' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='1280'>
- <var-decl name='_co_cached' type-id='type-id-926' visibility='default' filepath='./Include/cpython/code.h' line='140' column='1'/>
+ <var-decl name='_co_cached' type-id='type-id-925' visibility='default' filepath='./Include/cpython/code.h' line='140' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='1344'>
<var-decl name='_co_instrumentation_version' type-id='type-id-426' visibility='default' filepath='./Include/cpython/code.h' line='140' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='1408'>
- <var-decl name='_co_monitoring' type-id='type-id-927' visibility='default' filepath='./Include/cpython/code.h' line='140' column='1'/>
+ <var-decl name='_co_monitoring' type-id='type-id-926' visibility='default' filepath='./Include/cpython/code.h' line='140' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='1472'>
<var-decl name='_co_firsttraceable' type-id='type-id-5' visibility='default' filepath='./Include/cpython/code.h' line='140' column='1'/>
@@ -13961,17 +13949,17 @@
<var-decl name='co_extra' type-id='type-id-29' visibility='default' filepath='./Include/cpython/code.h' line='140' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='1600'>
- <var-decl name='co_code_adaptive' type-id='type-id-806' visibility='default' filepath='./Include/cpython/code.h' line='140' column='1'/>
+ <var-decl name='co_code_adaptive' type-id='type-id-805' visibility='default' filepath='./Include/cpython/code.h' line='140' column='1'/>
</data-member>
</class-decl>
- <enum-decl name='PyCodeEvent' naming-typedef-id='type-id-928' filepath='./Include/cpython/code.h' line='247' column='1' id='type-id-929'>
+ <enum-decl name='PyCodeEvent' naming-typedef-id='type-id-927' filepath='./Include/cpython/code.h' line='247' column='1' id='type-id-928'>
<underlying-type type-id='type-id-31'/>
<enumerator name='PY_CODE_EVENT_CREATE' value='0'/>
<enumerator name='PY_CODE_EVENT_DESTROY' value='1'/>
</enum-decl>
- <typedef-decl name='PyCodeEvent' type-id='type-id-929' filepath='./Include/cpython/code.h' line='251' column='1' id='type-id-928'/>
- <typedef-decl name='PyCode_WatchCallback' type-id='type-id-930' filepath='./Include/cpython/code.h' line='263' column='1' id='type-id-325'/>
- <class-decl name='Py_complex' size-in-bits='128' is-struct='yes' naming-typedef-id='type-id-322' visibility='default' filepath='./Include/cpython/complexobject.h' line='5' column='1' id='type-id-931'>
+ <typedef-decl name='PyCodeEvent' type-id='type-id-928' filepath='./Include/cpython/code.h' line='251' column='1' id='type-id-927'/>
+ <typedef-decl name='PyCode_WatchCallback' type-id='type-id-929' filepath='./Include/cpython/code.h' line='263' column='1' id='type-id-325'/>
+ <class-decl name='Py_complex' size-in-bits='128' is-struct='yes' naming-typedef-id='type-id-322' visibility='default' filepath='./Include/cpython/complexobject.h' line='5' column='1' id='type-id-930'>
<data-member access='public' layout-offset-in-bits='0'>
<var-decl name='real' type-id='type-id-171' visibility='default' filepath='./Include/cpython/complexobject.h' line='6' column='1'/>
</data-member>
@@ -13979,9 +13967,9 @@
<var-decl name='imag' type-id='type-id-171' visibility='default' filepath='./Include/cpython/complexobject.h' line='7' column='1'/>
</data-member>
</class-decl>
- <typedef-decl name='Py_complex' type-id='type-id-931' filepath='./Include/cpython/complexobject.h' line='8' column='1' id='type-id-322'/>
- <typedef-decl name='PyContext' type-id='type-id-932' filepath='./Include/cpython/context.h' line='9' column='1' id='type-id-933'/>
- <typedef-decl name='wrapperfunc' type-id='type-id-934' filepath='./Include/cpython/descrobject.h' line='5' column='1' id='type-id-935'/>
+ <typedef-decl name='Py_complex' type-id='type-id-930' filepath='./Include/cpython/complexobject.h' line='8' column='1' id='type-id-322'/>
+ <typedef-decl name='PyContext' type-id='type-id-931' filepath='./Include/cpython/context.h' line='9' column='1' id='type-id-932'/>
+ <typedef-decl name='wrapperfunc' type-id='type-id-933' filepath='./Include/cpython/descrobject.h' line='5' column='1' id='type-id-934'/>
<class-decl name='wrapperbase' size-in-bits='448' is-struct='yes' visibility='default' filepath='./Include/cpython/descrobject.h' line='11' column='1' id='type-id-329'>
<data-member access='public' layout-offset-in-bits='0'>
<var-decl name='name' type-id='type-id-6' visibility='default' filepath='./Include/cpython/descrobject.h' line='12' column='1'/>
@@ -13993,7 +13981,7 @@
<var-decl name='function' type-id='type-id-29' visibility='default' filepath='./Include/cpython/descrobject.h' line='14' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='192'>
- <var-decl name='wrapper' type-id='type-id-935' visibility='default' filepath='./Include/cpython/descrobject.h' line='15' column='1'/>
+ <var-decl name='wrapper' type-id='type-id-934' visibility='default' filepath='./Include/cpython/descrobject.h' line='15' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='256'>
<var-decl name='doc' type-id='type-id-6' visibility='default' filepath='./Include/cpython/descrobject.h' line='16' column='1'/>
@@ -14005,9 +13993,9 @@
<var-decl name='name_strobj' type-id='type-id-4' visibility='default' filepath='./Include/cpython/descrobject.h' line='18' column='1'/>
</data-member>
</class-decl>
- <typedef-decl name='PyDictKeysObject' type-id='type-id-514' filepath='./Include/cpython/dictobject.h' line='5' column='1' id='type-id-513'/>
- <typedef-decl name='PyDictValues' type-id='type-id-824' filepath='./Include/cpython/dictobject.h' line='6' column='1' id='type-id-936'/>
- <class-decl name='PyDictObject' size-in-bits='384' is-struct='yes' naming-typedef-id='type-id-937' visibility='default' filepath='./Include/cpython/dictobject.h' line='11' column='1' id='type-id-938'>
+ <typedef-decl name='PyDictKeysObject' type-id='type-id-513' filepath='./Include/cpython/dictobject.h' line='5' column='1' id='type-id-512'/>
+ <typedef-decl name='PyDictValues' type-id='type-id-823' filepath='./Include/cpython/dictobject.h' line='6' column='1' id='type-id-935'/>
+ <class-decl name='PyDictObject' size-in-bits='384' is-struct='yes' naming-typedef-id='type-id-936' visibility='default' filepath='./Include/cpython/dictobject.h' line='11' column='1' id='type-id-937'>
<data-member access='public' layout-offset-in-bits='0'>
<var-decl name='ob_base' type-id='type-id-355' visibility='default' filepath='./Include/cpython/dictobject.h' line='12' column='1'/>
</data-member>
@@ -14021,11 +14009,11 @@
<var-decl name='ma_keys' type-id='type-id-414' visibility='default' filepath='./Include/cpython/dictobject.h' line='28' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='320'>
- <var-decl name='ma_values' type-id='type-id-939' visibility='default' filepath='./Include/cpython/dictobject.h' line='35' column='1'/>
+ <var-decl name='ma_values' type-id='type-id-938' visibility='default' filepath='./Include/cpython/dictobject.h' line='35' column='1'/>
</data-member>
</class-decl>
- <typedef-decl name='PyDictObject' type-id='type-id-938' filepath='./Include/cpython/dictobject.h' line='36' column='1' id='type-id-937'/>
- <enum-decl name='PyDict_WatchEvent' naming-typedef-id='type-id-940' filepath='./Include/cpython/dictobject.h' line='85' column='1' id='type-id-941'>
+ <typedef-decl name='PyDictObject' type-id='type-id-937' filepath='./Include/cpython/dictobject.h' line='36' column='1' id='type-id-936'/>
+ <enum-decl name='PyDict_WatchEvent' naming-typedef-id='type-id-939' filepath='./Include/cpython/dictobject.h' line='85' column='1' id='type-id-940'>
<underlying-type type-id='type-id-31'/>
<enumerator name='PyDict_EVENT_ADDED' value='0'/>
<enumerator name='PyDict_EVENT_MODIFIED' value='1'/>
@@ -14034,10 +14022,10 @@
<enumerator name='PyDict_EVENT_CLEARED' value='4'/>
<enumerator name='PyDict_EVENT_DEALLOCATED' value='5'/>
</enum-decl>
- <typedef-decl name='PyDict_WatchEvent' type-id='type-id-941' filepath='./Include/cpython/dictobject.h' line='89' column='1' id='type-id-940'/>
- <typedef-decl name='PyDict_WatchCallback' type-id='type-id-942' filepath='./Include/cpython/dictobject.h' line='94' column='1' id='type-id-337'/>
- <typedef-decl name='Py_OpenCodeHookFunction' type-id='type-id-943' filepath='./Include/cpython/fileobject.h' line='12' column='1' id='type-id-340'/>
- <class-decl name='PyFloatObject' size-in-bits='192' is-struct='yes' naming-typedef-id='type-id-944' visibility='default' filepath='./Include/cpython/floatobject.h' line='5' column='1' id='type-id-945'>
+ <typedef-decl name='PyDict_WatchEvent' type-id='type-id-940' filepath='./Include/cpython/dictobject.h' line='89' column='1' id='type-id-939'/>
+ <typedef-decl name='PyDict_WatchCallback' type-id='type-id-941' filepath='./Include/cpython/dictobject.h' line='94' column='1' id='type-id-337'/>
+ <typedef-decl name='Py_OpenCodeHookFunction' type-id='type-id-942' filepath='./Include/cpython/fileobject.h' line='12' column='1' id='type-id-340'/>
+ <class-decl name='PyFloatObject' size-in-bits='192' is-struct='yes' naming-typedef-id='type-id-943' visibility='default' filepath='./Include/cpython/floatobject.h' line='5' column='1' id='type-id-944'>
<data-member access='public' layout-offset-in-bits='0'>
<var-decl name='ob_base' type-id='type-id-355' visibility='default' filepath='./Include/cpython/floatobject.h' line='6' column='1'/>
</data-member>
@@ -14045,8 +14033,8 @@
<var-decl name='ob_fval' type-id='type-id-171' visibility='default' filepath='./Include/cpython/floatobject.h' line='7' column='1'/>
</data-member>
</class-decl>
- <typedef-decl name='PyFloatObject' type-id='type-id-945' filepath='./Include/cpython/floatobject.h' line='8' column='1' id='type-id-944'/>
- <class-decl name='PyFunctionObject' size-in-bits='1152' is-struct='yes' naming-typedef-id='type-id-946' visibility='default' filepath='./Include/cpython/funcobject.h' line='36' column='1' id='type-id-947'>
+ <typedef-decl name='PyFloatObject' type-id='type-id-944' filepath='./Include/cpython/floatobject.h' line='8' column='1' id='type-id-943'/>
+ <class-decl name='PyFunctionObject' size-in-bits='1152' is-struct='yes' naming-typedef-id='type-id-945' visibility='default' filepath='./Include/cpython/funcobject.h' line='36' column='1' id='type-id-946'>
<data-member access='public' layout-offset-in-bits='0'>
<var-decl name='ob_base' type-id='type-id-355' visibility='default' filepath='./Include/cpython/funcobject.h' line='37' column='1'/>
</data-member>
@@ -14099,8 +14087,8 @@
<var-decl name='func_version' type-id='type-id-324' visibility='default' filepath='./Include/cpython/funcobject.h' line='54' column='1'/>
</data-member>
</class-decl>
- <typedef-decl name='PyFunctionObject' type-id='type-id-947' filepath='./Include/cpython/funcobject.h' line='61' column='1' id='type-id-946'/>
- <enum-decl name='PyFunction_WatchEvent' naming-typedef-id='type-id-948' filepath='./Include/cpython/funcobject.h' line='138' column='1' id='type-id-949'>
+ <typedef-decl name='PyFunctionObject' type-id='type-id-946' filepath='./Include/cpython/funcobject.h' line='61' column='1' id='type-id-945'/>
+ <enum-decl name='PyFunction_WatchEvent' naming-typedef-id='type-id-947' filepath='./Include/cpython/funcobject.h' line='138' column='1' id='type-id-948'>
<underlying-type type-id='type-id-31'/>
<enumerator name='PyFunction_EVENT_CREATE' value='0'/>
<enumerator name='PyFunction_EVENT_DESTROY' value='1'/>
@@ -14108,9 +14096,9 @@
<enumerator name='PyFunction_EVENT_MODIFY_DEFAULTS' value='3'/>
<enumerator name='PyFunction_EVENT_MODIFY_KWDEFAULTS' value='4'/>
</enum-decl>
- <typedef-decl name='PyFunction_WatchEvent' type-id='type-id-949' filepath='./Include/cpython/funcobject.h' line='142' column='1' id='type-id-948'/>
- <typedef-decl name='PyFunction_WatchCallback' type-id='type-id-950' filepath='./Include/cpython/funcobject.h' line='159' column='1' id='type-id-352'/>
- <class-decl name='_inittab' size-in-bits='128' is-struct='yes' visibility='default' filepath='./Include/cpython/import.h' line='7' column='1' id='type-id-951'>
+ <typedef-decl name='PyFunction_WatchEvent' type-id='type-id-948' filepath='./Include/cpython/funcobject.h' line='142' column='1' id='type-id-947'/>
+ <typedef-decl name='PyFunction_WatchCallback' type-id='type-id-949' filepath='./Include/cpython/funcobject.h' line='159' column='1' id='type-id-352'/>
+ <class-decl name='_inittab' size-in-bits='128' is-struct='yes' visibility='default' filepath='./Include/cpython/import.h' line='7' column='1' id='type-id-950'>
<data-member access='public' layout-offset-in-bits='0'>
<var-decl name='name' type-id='type-id-6' visibility='default' filepath='./Include/cpython/import.h' line='8' column='1'/>
</data-member>
@@ -14118,7 +14106,7 @@
<var-decl name='initfunc' type-id='type-id-379' visibility='default' filepath='./Include/cpython/import.h' line='9' column='1'/>
</data-member>
</class-decl>
- <class-decl name='PyWideStringList' size-in-bits='128' is-struct='yes' naming-typedef-id='type-id-952' visibility='default' filepath='./Include/cpython/initconfig.h' line='31' column='1' id='type-id-953'>
+ <class-decl name='PyWideStringList' size-in-bits='128' is-struct='yes' naming-typedef-id='type-id-951' visibility='default' filepath='./Include/cpython/initconfig.h' line='31' column='1' id='type-id-952'>
<data-member access='public' layout-offset-in-bits='0'>
<var-decl name='length' type-id='type-id-7' visibility='default' filepath='./Include/cpython/initconfig.h' line='34' column='1'/>
</data-member>
@@ -14126,8 +14114,8 @@
<var-decl name='items' type-id='type-id-239' visibility='default' filepath='./Include/cpython/initconfig.h' line='35' column='1'/>
</data-member>
</class-decl>
- <typedef-decl name='PyWideStringList' type-id='type-id-953' filepath='./Include/cpython/initconfig.h' line='36' column='1' id='type-id-952'/>
- <class-decl name='PyPreConfig' size-in-bits='320' is-struct='yes' visibility='default' filepath='./Include/cpython/initconfig.h' line='47' column='1' id='type-id-954'>
+ <typedef-decl name='PyWideStringList' type-id='type-id-952' filepath='./Include/cpython/initconfig.h' line='36' column='1' id='type-id-951'/>
+ <class-decl name='PyPreConfig' size-in-bits='320' is-struct='yes' visibility='default' filepath='./Include/cpython/initconfig.h' line='47' column='1' id='type-id-953'>
<data-member access='public' layout-offset-in-bits='0'>
<var-decl name='_config_init' type-id='type-id-5' visibility='default' filepath='./Include/cpython/initconfig.h' line='48' column='1'/>
</data-member>
@@ -14159,8 +14147,8 @@
<var-decl name='allocator' type-id='type-id-5' visibility='default' filepath='./Include/cpython/initconfig.h' line='124' column='1'/>
</data-member>
</class-decl>
- <typedef-decl name='PyPreConfig' type-id='type-id-954' filepath='./Include/cpython/initconfig.h' line='125' column='1' id='type-id-955'/>
- <class-decl name='PyConfig' size-in-bits='3584' is-struct='yes' visibility='default' filepath='./Include/cpython/initconfig.h' line='134' column='1' id='type-id-956'>
+ <typedef-decl name='PyPreConfig' type-id='type-id-953' filepath='./Include/cpython/initconfig.h' line='125' column='1' id='type-id-954'/>
+ <class-decl name='PyConfig' size-in-bits='3584' is-struct='yes' visibility='default' filepath='./Include/cpython/initconfig.h' line='134' column='1' id='type-id-955'>
<data-member access='public' layout-offset-in-bits='0'>
<var-decl name='_config_init' type-id='type-id-5' visibility='default' filepath='./Include/cpython/initconfig.h' line='135' column='1'/>
</data-member>
@@ -14222,16 +14210,16 @@
<var-decl name='parse_argv' type-id='type-id-5' visibility='default' filepath='./Include/cpython/initconfig.h' line='155' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='896'>
- <var-decl name='orig_argv' type-id='type-id-952' visibility='default' filepath='./Include/cpython/initconfig.h' line='156' column='1'/>
+ <var-decl name='orig_argv' type-id='type-id-951' visibility='default' filepath='./Include/cpython/initconfig.h' line='156' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='1024'>
- <var-decl name='argv' type-id='type-id-952' visibility='default' filepath='./Include/cpython/initconfig.h' line='157' column='1'/>
+ <var-decl name='argv' type-id='type-id-951' visibility='default' filepath='./Include/cpython/initconfig.h' line='157' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='1152'>
- <var-decl name='xoptions' type-id='type-id-952' visibility='default' filepath='./Include/cpython/initconfig.h' line='158' column='1'/>
+ <var-decl name='xoptions' type-id='type-id-951' visibility='default' filepath='./Include/cpython/initconfig.h' line='158' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='1280'>
- <var-decl name='warnoptions' type-id='type-id-952' visibility='default' filepath='./Include/cpython/initconfig.h' line='159' column='1'/>
+ <var-decl name='warnoptions' type-id='type-id-951' visibility='default' filepath='./Include/cpython/initconfig.h' line='159' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='1408'>
<var-decl name='site_import' type-id='type-id-5' visibility='default' filepath='./Include/cpython/initconfig.h' line='160' column='1'/>
@@ -14312,7 +14300,7 @@
<var-decl name='module_search_paths_set' type-id='type-id-5' visibility='default' filepath='./Include/cpython/initconfig.h' line='196' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='2560'>
- <var-decl name='module_search_paths' type-id='type-id-952' visibility='default' filepath='./Include/cpython/initconfig.h' line='197' column='1'/>
+ <var-decl name='module_search_paths' type-id='type-id-951' visibility='default' filepath='./Include/cpython/initconfig.h' line='197' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='2688'>
<var-decl name='stdlib_dir' type-id='type-id-57' visibility='default' filepath='./Include/cpython/initconfig.h' line='198' column='1'/>
@@ -14360,8 +14348,8 @@
<var-decl name='_is_python_build' type-id='type-id-5' visibility='default' filepath='./Include/cpython/initconfig.h' line='225' column='1'/>
</data-member>
</class-decl>
- <typedef-decl name='PyConfig' type-id='type-id-956' filepath='./Include/cpython/initconfig.h' line='237' column='1' id='type-id-266'/>
- <class-decl name='PyListObject' size-in-bits='320' is-struct='yes' naming-typedef-id='type-id-957' visibility='default' filepath='./Include/cpython/listobject.h' line='5' column='1' id='type-id-958'>
+ <typedef-decl name='PyConfig' type-id='type-id-955' filepath='./Include/cpython/initconfig.h' line='237' column='1' id='type-id-266'/>
+ <class-decl name='PyListObject' size-in-bits='320' is-struct='yes' naming-typedef-id='type-id-956' visibility='default' filepath='./Include/cpython/listobject.h' line='5' column='1' id='type-id-957'>
<data-member access='public' layout-offset-in-bits='0'>
<var-decl name='ob_base' type-id='type-id-318' visibility='default' filepath='./Include/cpython/listobject.h' line='6' column='1'/>
</data-member>
@@ -14372,43 +14360,43 @@
<var-decl name='allocated' type-id='type-id-7' visibility='default' filepath='./Include/cpython/listobject.h' line='21' column='1'/>
</data-member>
</class-decl>
- <typedef-decl name='PyListObject' type-id='type-id-958' filepath='./Include/cpython/listobject.h' line='22' column='1' id='type-id-957'/>
- <class-decl name='PyMutex' size-in-bits='8' is-struct='yes' visibility='default' filepath='./Include/cpython/lock.h' line='29' column='1' id='type-id-959'>
+ <typedef-decl name='PyListObject' type-id='type-id-957' filepath='./Include/cpython/listobject.h' line='22' column='1' id='type-id-956'/>
+ <class-decl name='PyMutex' size-in-bits='8' is-struct='yes' visibility='default' filepath='./Include/cpython/lock.h' line='29' column='1' id='type-id-958'>
<data-member access='public' layout-offset-in-bits='0'>
<var-decl name='_bits' type-id='type-id-303' visibility='default' filepath='./Include/cpython/lock.h' line='30' column='1'/>
</data-member>
</class-decl>
- <typedef-decl name='PyMutex' type-id='type-id-959' filepath='./Include/cpython/lock.h' line='31' column='1' id='type-id-502'/>
+ <typedef-decl name='PyMutex' type-id='type-id-958' filepath='./Include/cpython/lock.h' line='31' column='1' id='type-id-693'/>
<typedef-decl name='digit' type-id='type-id-324' filepath='./Include/cpython/longintrepr.h' line='43' column='1' id='type-id-372'/>
- <class-decl name='_PyLongValue' size-in-bits='128' is-struct='yes' visibility='default' filepath='./Include/cpython/longintrepr.h' line='93' column='1' id='type-id-960'>
+ <class-decl name='_PyLongValue' size-in-bits='128' is-struct='yes' visibility='default' filepath='./Include/cpython/longintrepr.h' line='93' column='1' id='type-id-959'>
<data-member access='public' layout-offset-in-bits='0'>
<var-decl name='lv_tag' type-id='type-id-426' visibility='default' filepath='./Include/cpython/longintrepr.h' line='94' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='64'>
- <var-decl name='ob_digit' type-id='type-id-827' visibility='default' filepath='./Include/cpython/longintrepr.h' line='95' column='1'/>
+ <var-decl name='ob_digit' type-id='type-id-826' visibility='default' filepath='./Include/cpython/longintrepr.h' line='95' column='1'/>
</data-member>
</class-decl>
- <typedef-decl name='_PyLongValue' type-id='type-id-960' filepath='./Include/cpython/longintrepr.h' line='96' column='1' id='type-id-961'/>
- <class-decl name='_longobject' size-in-bits='256' is-struct='yes' visibility='default' filepath='./Include/cpython/longintrepr.h' line='98' column='1' id='type-id-962'>
+ <typedef-decl name='_PyLongValue' type-id='type-id-959' filepath='./Include/cpython/longintrepr.h' line='96' column='1' id='type-id-960'/>
+ <class-decl name='_longobject' size-in-bits='256' is-struct='yes' visibility='default' filepath='./Include/cpython/longintrepr.h' line='98' column='1' id='type-id-961'>
<data-member access='public' layout-offset-in-bits='0'>
<var-decl name='ob_base' type-id='type-id-355' visibility='default' filepath='./Include/cpython/longintrepr.h' line='99' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='128'>
- <var-decl name='long_value' type-id='type-id-961' visibility='default' filepath='./Include/cpython/longintrepr.h' line='100' column='1'/>
+ <var-decl name='long_value' type-id='type-id-960' visibility='default' filepath='./Include/cpython/longintrepr.h' line='100' column='1'/>
</data-member>
</class-decl>
- <class-decl name='_PyOnceFlag' size-in-bits='8' is-struct='yes' naming-typedef-id='type-id-963' visibility='default' filepath='./Include/cpython/modsupport.h' line='7' column='1' id='type-id-964'>
+ <class-decl name='_PyOnceFlag' size-in-bits='8' is-struct='yes' naming-typedef-id='type-id-962' visibility='default' filepath='./Include/cpython/modsupport.h' line='7' column='1' id='type-id-963'>
<data-member access='public' layout-offset-in-bits='0'>
<var-decl name='v' type-id='type-id-303' visibility='default' filepath='./Include/cpython/modsupport.h' line='8' column='1'/>
</data-member>
</class-decl>
- <typedef-decl name='_PyOnceFlag' type-id='type-id-964' filepath='./Include/cpython/modsupport.h' line='9' column='1' id='type-id-963'/>
- <class-decl name='_PyArg_Parser' size-in-bits='576' is-struct='yes' visibility='default' filepath='./Include/cpython/modsupport.h' line='11' column='1' id='type-id-965'>
+ <typedef-decl name='_PyOnceFlag' type-id='type-id-963' filepath='./Include/cpython/modsupport.h' line='9' column='1' id='type-id-962'/>
+ <class-decl name='_PyArg_Parser' size-in-bits='576' is-struct='yes' visibility='default' filepath='./Include/cpython/modsupport.h' line='11' column='1' id='type-id-964'>
<data-member access='public' layout-offset-in-bits='0'>
<var-decl name='format' type-id='type-id-6' visibility='default' filepath='./Include/cpython/modsupport.h' line='12' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='64'>
- <var-decl name='keywords' type-id='type-id-966' visibility='default' filepath='./Include/cpython/modsupport.h' line='13' column='1'/>
+ <var-decl name='keywords' type-id='type-id-965' visibility='default' filepath='./Include/cpython/modsupport.h' line='13' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='128'>
<var-decl name='fname' type-id='type-id-6' visibility='default' filepath='./Include/cpython/modsupport.h' line='14' column='1'/>
@@ -14417,7 +14405,7 @@
<var-decl name='custom_msg' type-id='type-id-6' visibility='default' filepath='./Include/cpython/modsupport.h' line='15' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='256'>
- <var-decl name='once' type-id='type-id-963' visibility='default' filepath='./Include/cpython/modsupport.h' line='16' column='1'/>
+ <var-decl name='once' type-id='type-id-962' visibility='default' filepath='./Include/cpython/modsupport.h' line='16' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='288'>
<var-decl name='is_kwtuple_owned' type-id='type-id-5' visibility='default' filepath='./Include/cpython/modsupport.h' line='17' column='1'/>
@@ -14438,188 +14426,188 @@
<var-decl name='next' type-id='type-id-270' visibility='default' filepath='./Include/cpython/modsupport.h' line='22' column='1'/>
</data-member>
</class-decl>
- <class-decl name='PyNumberMethods' size-in-bits='2304' is-struct='yes' naming-typedef-id='type-id-967' visibility='default' filepath='./Include/cpython/object.h' line='60' column='1' id='type-id-968'>
+ <class-decl name='PyNumberMethods' size-in-bits='2304' is-struct='yes' naming-typedef-id='type-id-966' visibility='default' filepath='./Include/cpython/object.h' line='60' column='1' id='type-id-967'>
<data-member access='public' layout-offset-in-bits='0'>
- <var-decl name='nb_add' type-id='type-id-969' visibility='default' filepath='./Include/cpython/object.h' line='65' column='1'/>
+ <var-decl name='nb_add' type-id='type-id-968' visibility='default' filepath='./Include/cpython/object.h' line='65' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='64'>
- <var-decl name='nb_subtract' type-id='type-id-969' visibility='default' filepath='./Include/cpython/object.h' line='66' column='1'/>
+ <var-decl name='nb_subtract' type-id='type-id-968' visibility='default' filepath='./Include/cpython/object.h' line='66' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='128'>
- <var-decl name='nb_multiply' type-id='type-id-969' visibility='default' filepath='./Include/cpython/object.h' line='67' column='1'/>
+ <var-decl name='nb_multiply' type-id='type-id-968' visibility='default' filepath='./Include/cpython/object.h' line='67' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='192'>
- <var-decl name='nb_remainder' type-id='type-id-969' visibility='default' filepath='./Include/cpython/object.h' line='68' column='1'/>
+ <var-decl name='nb_remainder' type-id='type-id-968' visibility='default' filepath='./Include/cpython/object.h' line='68' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='256'>
- <var-decl name='nb_divmod' type-id='type-id-969' visibility='default' filepath='./Include/cpython/object.h' line='69' column='1'/>
+ <var-decl name='nb_divmod' type-id='type-id-968' visibility='default' filepath='./Include/cpython/object.h' line='69' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='320'>
- <var-decl name='nb_power' type-id='type-id-970' visibility='default' filepath='./Include/cpython/object.h' line='70' column='1'/>
+ <var-decl name='nb_power' type-id='type-id-969' visibility='default' filepath='./Include/cpython/object.h' line='70' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='384'>
- <var-decl name='nb_negative' type-id='type-id-971' visibility='default' filepath='./Include/cpython/object.h' line='71' column='1'/>
+ <var-decl name='nb_negative' type-id='type-id-970' visibility='default' filepath='./Include/cpython/object.h' line='71' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='448'>
- <var-decl name='nb_positive' type-id='type-id-971' visibility='default' filepath='./Include/cpython/object.h' line='72' column='1'/>
+ <var-decl name='nb_positive' type-id='type-id-970' visibility='default' filepath='./Include/cpython/object.h' line='72' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='512'>
- <var-decl name='nb_absolute' type-id='type-id-971' visibility='default' filepath='./Include/cpython/object.h' line='73' column='1'/>
+ <var-decl name='nb_absolute' type-id='type-id-970' visibility='default' filepath='./Include/cpython/object.h' line='73' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='576'>
<var-decl name='nb_bool' type-id='type-id-311' visibility='default' filepath='./Include/cpython/object.h' line='74' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='640'>
- <var-decl name='nb_invert' type-id='type-id-971' visibility='default' filepath='./Include/cpython/object.h' line='75' column='1'/>
+ <var-decl name='nb_invert' type-id='type-id-970' visibility='default' filepath='./Include/cpython/object.h' line='75' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='704'>
- <var-decl name='nb_lshift' type-id='type-id-969' visibility='default' filepath='./Include/cpython/object.h' line='76' column='1'/>
+ <var-decl name='nb_lshift' type-id='type-id-968' visibility='default' filepath='./Include/cpython/object.h' line='76' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='768'>
- <var-decl name='nb_rshift' type-id='type-id-969' visibility='default' filepath='./Include/cpython/object.h' line='77' column='1'/>
+ <var-decl name='nb_rshift' type-id='type-id-968' visibility='default' filepath='./Include/cpython/object.h' line='77' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='832'>
- <var-decl name='nb_and' type-id='type-id-969' visibility='default' filepath='./Include/cpython/object.h' line='78' column='1'/>
+ <var-decl name='nb_and' type-id='type-id-968' visibility='default' filepath='./Include/cpython/object.h' line='78' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='896'>
- <var-decl name='nb_xor' type-id='type-id-969' visibility='default' filepath='./Include/cpython/object.h' line='79' column='1'/>
+ <var-decl name='nb_xor' type-id='type-id-968' visibility='default' filepath='./Include/cpython/object.h' line='79' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='960'>
- <var-decl name='nb_or' type-id='type-id-969' visibility='default' filepath='./Include/cpython/object.h' line='80' column='1'/>
+ <var-decl name='nb_or' type-id='type-id-968' visibility='default' filepath='./Include/cpython/object.h' line='80' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='1024'>
- <var-decl name='nb_int' type-id='type-id-971' visibility='default' filepath='./Include/cpython/object.h' line='81' column='1'/>
+ <var-decl name='nb_int' type-id='type-id-970' visibility='default' filepath='./Include/cpython/object.h' line='81' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='1088'>
<var-decl name='nb_reserved' type-id='type-id-29' visibility='default' filepath='./Include/cpython/object.h' line='82' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='1152'>
- <var-decl name='nb_float' type-id='type-id-971' visibility='default' filepath='./Include/cpython/object.h' line='83' column='1'/>
+ <var-decl name='nb_float' type-id='type-id-970' visibility='default' filepath='./Include/cpython/object.h' line='83' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='1216'>
- <var-decl name='nb_inplace_add' type-id='type-id-969' visibility='default' filepath='./Include/cpython/object.h' line='85' column='1'/>
+ <var-decl name='nb_inplace_add' type-id='type-id-968' visibility='default' filepath='./Include/cpython/object.h' line='85' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='1280'>
- <var-decl name='nb_inplace_subtract' type-id='type-id-969' visibility='default' filepath='./Include/cpython/object.h' line='86' column='1'/>
+ <var-decl name='nb_inplace_subtract' type-id='type-id-968' visibility='default' filepath='./Include/cpython/object.h' line='86' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='1344'>
- <var-decl name='nb_inplace_multiply' type-id='type-id-969' visibility='default' filepath='./Include/cpython/object.h' line='87' column='1'/>
+ <var-decl name='nb_inplace_multiply' type-id='type-id-968' visibility='default' filepath='./Include/cpython/object.h' line='87' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='1408'>
- <var-decl name='nb_inplace_remainder' type-id='type-id-969' visibility='default' filepath='./Include/cpython/object.h' line='88' column='1'/>
+ <var-decl name='nb_inplace_remainder' type-id='type-id-968' visibility='default' filepath='./Include/cpython/object.h' line='88' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='1472'>
- <var-decl name='nb_inplace_power' type-id='type-id-970' visibility='default' filepath='./Include/cpython/object.h' line='89' column='1'/>
+ <var-decl name='nb_inplace_power' type-id='type-id-969' visibility='default' filepath='./Include/cpython/object.h' line='89' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='1536'>
- <var-decl name='nb_inplace_lshift' type-id='type-id-969' visibility='default' filepath='./Include/cpython/object.h' line='90' column='1'/>
+ <var-decl name='nb_inplace_lshift' type-id='type-id-968' visibility='default' filepath='./Include/cpython/object.h' line='90' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='1600'>
- <var-decl name='nb_inplace_rshift' type-id='type-id-969' visibility='default' filepath='./Include/cpython/object.h' line='91' column='1'/>
+ <var-decl name='nb_inplace_rshift' type-id='type-id-968' visibility='default' filepath='./Include/cpython/object.h' line='91' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='1664'>
- <var-decl name='nb_inplace_and' type-id='type-id-969' visibility='default' filepath='./Include/cpython/object.h' line='92' column='1'/>
+ <var-decl name='nb_inplace_and' type-id='type-id-968' visibility='default' filepath='./Include/cpython/object.h' line='92' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='1728'>
- <var-decl name='nb_inplace_xor' type-id='type-id-969' visibility='default' filepath='./Include/cpython/object.h' line='93' column='1'/>
+ <var-decl name='nb_inplace_xor' type-id='type-id-968' visibility='default' filepath='./Include/cpython/object.h' line='93' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='1792'>
- <var-decl name='nb_inplace_or' type-id='type-id-969' visibility='default' filepath='./Include/cpython/object.h' line='94' column='1'/>
+ <var-decl name='nb_inplace_or' type-id='type-id-968' visibility='default' filepath='./Include/cpython/object.h' line='94' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='1856'>
- <var-decl name='nb_floor_divide' type-id='type-id-969' visibility='default' filepath='./Include/cpython/object.h' line='96' column='1'/>
+ <var-decl name='nb_floor_divide' type-id='type-id-968' visibility='default' filepath='./Include/cpython/object.h' line='96' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='1920'>
- <var-decl name='nb_true_divide' type-id='type-id-969' visibility='default' filepath='./Include/cpython/object.h' line='97' column='1'/>
+ <var-decl name='nb_true_divide' type-id='type-id-968' visibility='default' filepath='./Include/cpython/object.h' line='97' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='1984'>
- <var-decl name='nb_inplace_floor_divide' type-id='type-id-969' visibility='default' filepath='./Include/cpython/object.h' line='98' column='1'/>
+ <var-decl name='nb_inplace_floor_divide' type-id='type-id-968' visibility='default' filepath='./Include/cpython/object.h' line='98' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='2048'>
- <var-decl name='nb_inplace_true_divide' type-id='type-id-969' visibility='default' filepath='./Include/cpython/object.h' line='99' column='1'/>
+ <var-decl name='nb_inplace_true_divide' type-id='type-id-968' visibility='default' filepath='./Include/cpython/object.h' line='99' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='2112'>
- <var-decl name='nb_index' type-id='type-id-971' visibility='default' filepath='./Include/cpython/object.h' line='101' column='1'/>
+ <var-decl name='nb_index' type-id='type-id-970' visibility='default' filepath='./Include/cpython/object.h' line='101' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='2176'>
- <var-decl name='nb_matrix_multiply' type-id='type-id-969' visibility='default' filepath='./Include/cpython/object.h' line='103' column='1'/>
+ <var-decl name='nb_matrix_multiply' type-id='type-id-968' visibility='default' filepath='./Include/cpython/object.h' line='103' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='2240'>
- <var-decl name='nb_inplace_matrix_multiply' type-id='type-id-969' visibility='default' filepath='./Include/cpython/object.h' line='104' column='1'/>
+ <var-decl name='nb_inplace_matrix_multiply' type-id='type-id-968' visibility='default' filepath='./Include/cpython/object.h' line='104' column='1'/>
</data-member>
</class-decl>
- <typedef-decl name='PyNumberMethods' type-id='type-id-968' filepath='./Include/cpython/object.h' line='105' column='1' id='type-id-967'/>
- <class-decl name='PySequenceMethods' size-in-bits='640' is-struct='yes' naming-typedef-id='type-id-972' visibility='default' filepath='./Include/cpython/object.h' line='107' column='1' id='type-id-973'>
+ <typedef-decl name='PyNumberMethods' type-id='type-id-967' filepath='./Include/cpython/object.h' line='105' column='1' id='type-id-966'/>
+ <class-decl name='PySequenceMethods' size-in-bits='640' is-struct='yes' naming-typedef-id='type-id-971' visibility='default' filepath='./Include/cpython/object.h' line='107' column='1' id='type-id-972'>
<data-member access='public' layout-offset-in-bits='0'>
- <var-decl name='sq_length' type-id='type-id-974' visibility='default' filepath='./Include/cpython/object.h' line='108' column='1'/>
+ <var-decl name='sq_length' type-id='type-id-973' visibility='default' filepath='./Include/cpython/object.h' line='108' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='64'>
- <var-decl name='sq_concat' type-id='type-id-969' visibility='default' filepath='./Include/cpython/object.h' line='109' column='1'/>
+ <var-decl name='sq_concat' type-id='type-id-968' visibility='default' filepath='./Include/cpython/object.h' line='109' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='128'>
- <var-decl name='sq_repeat' type-id='type-id-975' visibility='default' filepath='./Include/cpython/object.h' line='110' column='1'/>
+ <var-decl name='sq_repeat' type-id='type-id-974' visibility='default' filepath='./Include/cpython/object.h' line='110' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='192'>
- <var-decl name='sq_item' type-id='type-id-975' visibility='default' filepath='./Include/cpython/object.h' line='111' column='1'/>
+ <var-decl name='sq_item' type-id='type-id-974' visibility='default' filepath='./Include/cpython/object.h' line='111' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='256'>
<var-decl name='was_sq_slice' type-id='type-id-29' visibility='default' filepath='./Include/cpython/object.h' line='112' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='320'>
- <var-decl name='sq_ass_item' type-id='type-id-976' visibility='default' filepath='./Include/cpython/object.h' line='113' column='1'/>
+ <var-decl name='sq_ass_item' type-id='type-id-975' visibility='default' filepath='./Include/cpython/object.h' line='113' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='384'>
<var-decl name='was_sq_ass_slice' type-id='type-id-29' visibility='default' filepath='./Include/cpython/object.h' line='114' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='448'>
- <var-decl name='sq_contains' type-id='type-id-977' visibility='default' filepath='./Include/cpython/object.h' line='115' column='1'/>
+ <var-decl name='sq_contains' type-id='type-id-976' visibility='default' filepath='./Include/cpython/object.h' line='115' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='512'>
- <var-decl name='sq_inplace_concat' type-id='type-id-969' visibility='default' filepath='./Include/cpython/object.h' line='117' column='1'/>
+ <var-decl name='sq_inplace_concat' type-id='type-id-968' visibility='default' filepath='./Include/cpython/object.h' line='117' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='576'>
- <var-decl name='sq_inplace_repeat' type-id='type-id-975' visibility='default' filepath='./Include/cpython/object.h' line='118' column='1'/>
+ <var-decl name='sq_inplace_repeat' type-id='type-id-974' visibility='default' filepath='./Include/cpython/object.h' line='118' column='1'/>
</data-member>
</class-decl>
- <typedef-decl name='PySequenceMethods' type-id='type-id-973' filepath='./Include/cpython/object.h' line='119' column='1' id='type-id-972'/>
- <class-decl name='PyMappingMethods' size-in-bits='192' is-struct='yes' naming-typedef-id='type-id-978' visibility='default' filepath='./Include/cpython/object.h' line='121' column='1' id='type-id-979'>
+ <typedef-decl name='PySequenceMethods' type-id='type-id-972' filepath='./Include/cpython/object.h' line='119' column='1' id='type-id-971'/>
+ <class-decl name='PyMappingMethods' size-in-bits='192' is-struct='yes' naming-typedef-id='type-id-977' visibility='default' filepath='./Include/cpython/object.h' line='121' column='1' id='type-id-978'>
<data-member access='public' layout-offset-in-bits='0'>
- <var-decl name='mp_length' type-id='type-id-974' visibility='default' filepath='./Include/cpython/object.h' line='122' column='1'/>
+ <var-decl name='mp_length' type-id='type-id-973' visibility='default' filepath='./Include/cpython/object.h' line='122' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='64'>
- <var-decl name='mp_subscript' type-id='type-id-969' visibility='default' filepath='./Include/cpython/object.h' line='123' column='1'/>
+ <var-decl name='mp_subscript' type-id='type-id-968' visibility='default' filepath='./Include/cpython/object.h' line='123' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='128'>
- <var-decl name='mp_ass_subscript' type-id='type-id-980' visibility='default' filepath='./Include/cpython/object.h' line='124' column='1'/>
+ <var-decl name='mp_ass_subscript' type-id='type-id-979' visibility='default' filepath='./Include/cpython/object.h' line='124' column='1'/>
</data-member>
</class-decl>
- <typedef-decl name='PyMappingMethods' type-id='type-id-979' filepath='./Include/cpython/object.h' line='125' column='1' id='type-id-978'/>
- <typedef-decl name='sendfunc' type-id='type-id-981' filepath='./Include/cpython/object.h' line='127' column='1' id='type-id-982'/>
- <class-decl name='PyAsyncMethods' size-in-bits='256' is-struct='yes' naming-typedef-id='type-id-983' visibility='default' filepath='./Include/cpython/object.h' line='129' column='1' id='type-id-984'>
+ <typedef-decl name='PyMappingMethods' type-id='type-id-978' filepath='./Include/cpython/object.h' line='125' column='1' id='type-id-977'/>
+ <typedef-decl name='sendfunc' type-id='type-id-980' filepath='./Include/cpython/object.h' line='127' column='1' id='type-id-981'/>
+ <class-decl name='PyAsyncMethods' size-in-bits='256' is-struct='yes' naming-typedef-id='type-id-982' visibility='default' filepath='./Include/cpython/object.h' line='129' column='1' id='type-id-983'>
<data-member access='public' layout-offset-in-bits='0'>
- <var-decl name='am_await' type-id='type-id-971' visibility='default' filepath='./Include/cpython/object.h' line='130' column='1'/>
+ <var-decl name='am_await' type-id='type-id-970' visibility='default' filepath='./Include/cpython/object.h' line='130' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='64'>
- <var-decl name='am_aiter' type-id='type-id-971' visibility='default' filepath='./Include/cpython/object.h' line='131' column='1'/>
+ <var-decl name='am_aiter' type-id='type-id-970' visibility='default' filepath='./Include/cpython/object.h' line='131' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='128'>
- <var-decl name='am_anext' type-id='type-id-971' visibility='default' filepath='./Include/cpython/object.h' line='132' column='1'/>
+ <var-decl name='am_anext' type-id='type-id-970' visibility='default' filepath='./Include/cpython/object.h' line='132' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='192'>
- <var-decl name='am_send' type-id='type-id-982' visibility='default' filepath='./Include/cpython/object.h' line='133' column='1'/>
+ <var-decl name='am_send' type-id='type-id-981' visibility='default' filepath='./Include/cpython/object.h' line='133' column='1'/>
</data-member>
</class-decl>
- <typedef-decl name='PyAsyncMethods' type-id='type-id-984' filepath='./Include/cpython/object.h' line='134' column='1' id='type-id-983'/>
- <class-decl name='PyBufferProcs' size-in-bits='128' is-struct='yes' naming-typedef-id='type-id-985' visibility='default' filepath='./Include/cpython/object.h' line='136' column='1' id='type-id-986'>
+ <typedef-decl name='PyAsyncMethods' type-id='type-id-983' filepath='./Include/cpython/object.h' line='134' column='1' id='type-id-982'/>
+ <class-decl name='PyBufferProcs' size-in-bits='128' is-struct='yes' naming-typedef-id='type-id-984' visibility='default' filepath='./Include/cpython/object.h' line='136' column='1' id='type-id-985'>
<data-member access='public' layout-offset-in-bits='0'>
- <var-decl name='bf_getbuffer' type-id='type-id-530' visibility='default' filepath='./Include/cpython/object.h' line='137' column='1'/>
+ <var-decl name='bf_getbuffer' type-id='type-id-529' visibility='default' filepath='./Include/cpython/object.h' line='137' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='64'>
- <var-decl name='bf_releasebuffer' type-id='type-id-987' visibility='default' filepath='./Include/cpython/object.h' line='138' column='1'/>
+ <var-decl name='bf_releasebuffer' type-id='type-id-986' visibility='default' filepath='./Include/cpython/object.h' line='138' column='1'/>
</data-member>
</class-decl>
- <typedef-decl name='PyBufferProcs' type-id='type-id-986' filepath='./Include/cpython/object.h' line='139' column='1' id='type-id-985'/>
- <class-decl name='_typeobject' size-in-bits='3328' is-struct='yes' visibility='default' filepath='./Include/cpython/object.h' line='147' column='1' id='type-id-988'>
+ <typedef-decl name='PyBufferProcs' type-id='type-id-985' filepath='./Include/cpython/object.h' line='139' column='1' id='type-id-984'/>
+ <class-decl name='_typeobject' size-in-bits='3328' is-struct='yes' visibility='default' filepath='./Include/cpython/object.h' line='147' column='1' id='type-id-987'>
<data-member access='public' layout-offset-in-bits='0'>
<var-decl name='ob_base' type-id='type-id-318' visibility='default' filepath='./Include/cpython/object.h' line='148' column='1'/>
</data-member>
@@ -14633,49 +14621,49 @@
<var-decl name='tp_itemsize' type-id='type-id-7' visibility='default' filepath='./Include/cpython/object.h' line='150' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='384'>
- <var-decl name='tp_dealloc' type-id='type-id-989' visibility='default' filepath='./Include/cpython/object.h' line='154' column='1'/>
+ <var-decl name='tp_dealloc' type-id='type-id-988' visibility='default' filepath='./Include/cpython/object.h' line='154' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='448'>
<var-decl name='tp_vectorcall_offset' type-id='type-id-7' visibility='default' filepath='./Include/cpython/object.h' line='155' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='512'>
- <var-decl name='tp_getattr' type-id='type-id-990' visibility='default' filepath='./Include/cpython/object.h' line='156' column='1'/>
+ <var-decl name='tp_getattr' type-id='type-id-989' visibility='default' filepath='./Include/cpython/object.h' line='156' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='576'>
- <var-decl name='tp_setattr' type-id='type-id-991' visibility='default' filepath='./Include/cpython/object.h' line='157' column='1'/>
+ <var-decl name='tp_setattr' type-id='type-id-990' visibility='default' filepath='./Include/cpython/object.h' line='157' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='640'>
- <var-decl name='tp_as_async' type-id='type-id-992' visibility='default' filepath='./Include/cpython/object.h' line='158' column='1'/>
+ <var-decl name='tp_as_async' type-id='type-id-991' visibility='default' filepath='./Include/cpython/object.h' line='158' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='704'>
- <var-decl name='tp_repr' type-id='type-id-993' visibility='default' filepath='./Include/cpython/object.h' line='160' column='1'/>
+ <var-decl name='tp_repr' type-id='type-id-992' visibility='default' filepath='./Include/cpython/object.h' line='160' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='768'>
- <var-decl name='tp_as_number' type-id='type-id-994' visibility='default' filepath='./Include/cpython/object.h' line='164' column='1'/>
+ <var-decl name='tp_as_number' type-id='type-id-993' visibility='default' filepath='./Include/cpython/object.h' line='164' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='832'>
- <var-decl name='tp_as_sequence' type-id='type-id-995' visibility='default' filepath='./Include/cpython/object.h' line='165' column='1'/>
+ <var-decl name='tp_as_sequence' type-id='type-id-994' visibility='default' filepath='./Include/cpython/object.h' line='165' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='896'>
- <var-decl name='tp_as_mapping' type-id='type-id-996' visibility='default' filepath='./Include/cpython/object.h' line='166' column='1'/>
+ <var-decl name='tp_as_mapping' type-id='type-id-995' visibility='default' filepath='./Include/cpython/object.h' line='166' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='960'>
- <var-decl name='tp_hash' type-id='type-id-997' visibility='default' filepath='./Include/cpython/object.h' line='170' column='1'/>
+ <var-decl name='tp_hash' type-id='type-id-996' visibility='default' filepath='./Include/cpython/object.h' line='170' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='1024'>
- <var-decl name='tp_call' type-id='type-id-970' visibility='default' filepath='./Include/cpython/object.h' line='171' column='1'/>
+ <var-decl name='tp_call' type-id='type-id-969' visibility='default' filepath='./Include/cpython/object.h' line='171' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='1088'>
- <var-decl name='tp_str' type-id='type-id-993' visibility='default' filepath='./Include/cpython/object.h' line='172' column='1'/>
+ <var-decl name='tp_str' type-id='type-id-992' visibility='default' filepath='./Include/cpython/object.h' line='172' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='1152'>
- <var-decl name='tp_getattro' type-id='type-id-998' visibility='default' filepath='./Include/cpython/object.h' line='173' column='1'/>
+ <var-decl name='tp_getattro' type-id='type-id-997' visibility='default' filepath='./Include/cpython/object.h' line='173' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='1216'>
- <var-decl name='tp_setattro' type-id='type-id-999' visibility='default' filepath='./Include/cpython/object.h' line='174' column='1'/>
+ <var-decl name='tp_setattro' type-id='type-id-998' visibility='default' filepath='./Include/cpython/object.h' line='174' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='1280'>
- <var-decl name='tp_as_buffer' type-id='type-id-1000' visibility='default' filepath='./Include/cpython/object.h' line='177' column='1'/>
+ <var-decl name='tp_as_buffer' type-id='type-id-999' visibility='default' filepath='./Include/cpython/object.h' line='177' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='1344'>
<var-decl name='tp_flags' type-id='type-id-2' visibility='default' filepath='./Include/cpython/object.h' line='180' column='1'/>
@@ -14690,16 +14678,16 @@
<var-decl name='tp_clear' type-id='type-id-311' visibility='default' filepath='./Include/cpython/object.h' line='189' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='1600'>
- <var-decl name='tp_richcompare' type-id='type-id-1001' visibility='default' filepath='./Include/cpython/object.h' line='193' column='1'/>
+ <var-decl name='tp_richcompare' type-id='type-id-1000' visibility='default' filepath='./Include/cpython/object.h' line='193' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='1664'>
<var-decl name='tp_weaklistoffset' type-id='type-id-7' visibility='default' filepath='./Include/cpython/object.h' line='196' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='1728'>
- <var-decl name='tp_iter' type-id='type-id-1002' visibility='default' filepath='./Include/cpython/object.h' line='199' column='1'/>
+ <var-decl name='tp_iter' type-id='type-id-1001' visibility='default' filepath='./Include/cpython/object.h' line='199' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='1792'>
- <var-decl name='tp_iternext' type-id='type-id-1003' visibility='default' filepath='./Include/cpython/object.h' line='200' column='1'/>
+ <var-decl name='tp_iternext' type-id='type-id-1002' visibility='default' filepath='./Include/cpython/object.h' line='200' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='1856'>
<var-decl name='tp_methods' type-id='type-id-332' visibility='default' filepath='./Include/cpython/object.h' line='203' column='1'/>
@@ -14717,22 +14705,22 @@
<var-decl name='tp_dict' type-id='type-id-4' visibility='default' filepath='./Include/cpython/object.h' line='208' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='2176'>
- <var-decl name='tp_descr_get' type-id='type-id-1004' visibility='default' filepath='./Include/cpython/object.h' line='209' column='1'/>
+ <var-decl name='tp_descr_get' type-id='type-id-1003' visibility='default' filepath='./Include/cpython/object.h' line='209' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='2240'>
- <var-decl name='tp_descr_set' type-id='type-id-1005' visibility='default' filepath='./Include/cpython/object.h' line='210' column='1'/>
+ <var-decl name='tp_descr_set' type-id='type-id-1004' visibility='default' filepath='./Include/cpython/object.h' line='210' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='2304'>
<var-decl name='tp_dictoffset' type-id='type-id-7' visibility='default' filepath='./Include/cpython/object.h' line='211' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='2368'>
- <var-decl name='tp_init' type-id='type-id-1006' visibility='default' filepath='./Include/cpython/object.h' line='212' column='1'/>
+ <var-decl name='tp_init' type-id='type-id-1005' visibility='default' filepath='./Include/cpython/object.h' line='212' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='2432'>
- <var-decl name='tp_alloc' type-id='type-id-1007' visibility='default' filepath='./Include/cpython/object.h' line='213' column='1'/>
+ <var-decl name='tp_alloc' type-id='type-id-1006' visibility='default' filepath='./Include/cpython/object.h' line='213' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='2496'>
- <var-decl name='tp_new' type-id='type-id-1008' visibility='default' filepath='./Include/cpython/object.h' line='214' column='1'/>
+ <var-decl name='tp_new' type-id='type-id-1007' visibility='default' filepath='./Include/cpython/object.h' line='214' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='2560'>
<var-decl name='tp_free' type-id='type-id-384' visibility='default' filepath='./Include/cpython/object.h' line='215' column='1'/>
@@ -14756,13 +14744,13 @@
<var-decl name='tp_weaklist' type-id='type-id-4' visibility='default' filepath='./Include/cpython/object.h' line='221' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='3008'>
- <var-decl name='tp_del' type-id='type-id-989' visibility='default' filepath='./Include/cpython/object.h' line='222' column='1'/>
+ <var-decl name='tp_del' type-id='type-id-988' visibility='default' filepath='./Include/cpython/object.h' line='222' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='3072'>
<var-decl name='tp_version_tag' type-id='type-id-100' visibility='default' filepath='./Include/cpython/object.h' line='225' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='3136'>
- <var-decl name='tp_finalize' type-id='type-id-989' visibility='default' filepath='./Include/cpython/object.h' line='227' column='1'/>
+ <var-decl name='tp_finalize' type-id='type-id-988' visibility='default' filepath='./Include/cpython/object.h' line='227' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='3200'>
<var-decl name='tp_vectorcall' type-id='type-id-307' visibility='default' filepath='./Include/cpython/object.h' line='228' column='1'/>
@@ -14774,27 +14762,27 @@
<var-decl name='tp_versions_used' type-id='type-id-444' visibility='default' filepath='./Include/cpython/object.h' line='232' column='1'/>
</data-member>
</class-decl>
- <typedef-decl name='PyType_WatchCallback' type-id='type-id-1009' filepath='./Include/cpython/object.h' line='504' column='1' id='type-id-531'/>
- <enum-decl name='PyRefTracerEvent' naming-typedef-id='type-id-1010' filepath='./Include/cpython/object.h' line='518' column='1' id='type-id-1011'>
+ <typedef-decl name='PyType_WatchCallback' type-id='type-id-1008' filepath='./Include/cpython/object.h' line='504' column='1' id='type-id-530'/>
+ <enum-decl name='PyRefTracerEvent' naming-typedef-id='type-id-1009' filepath='./Include/cpython/object.h' line='518' column='1' id='type-id-1010'>
<underlying-type type-id='type-id-31'/>
<enumerator name='PyRefTracer_CREATE' value='0'/>
<enumerator name='PyRefTracer_DESTROY' value='1'/>
</enum-decl>
- <typedef-decl name='PyRefTracerEvent' type-id='type-id-1011' filepath='./Include/cpython/object.h' line='521' column='1' id='type-id-1010'/>
- <typedef-decl name='PyRefTracer' type-id='type-id-1012' filepath='./Include/cpython/object.h' line='523' column='1' id='type-id-402'/>
- <class-decl name='PyObjectArenaAllocator' size-in-bits='192' is-struct='yes' naming-typedef-id='type-id-504' visibility='default' filepath='./Include/cpython/objimpl.h' line='59' column='1' id='type-id-1013'>
+ <typedef-decl name='PyRefTracerEvent' type-id='type-id-1010' filepath='./Include/cpython/object.h' line='521' column='1' id='type-id-1009'/>
+ <typedef-decl name='PyRefTracer' type-id='type-id-1011' filepath='./Include/cpython/object.h' line='523' column='1' id='type-id-402'/>
+ <class-decl name='PyObjectArenaAllocator' size-in-bits='192' is-struct='yes' naming-typedef-id='type-id-502' visibility='default' filepath='./Include/cpython/objimpl.h' line='59' column='1' id='type-id-1012'>
<data-member access='public' layout-offset-in-bits='0'>
<var-decl name='ctx' type-id='type-id-29' visibility='default' filepath='./Include/cpython/objimpl.h' line='61' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='64'>
- <var-decl name='alloc' type-id='type-id-1014' visibility='default' filepath='./Include/cpython/objimpl.h' line='64' column='1'/>
+ <var-decl name='alloc' type-id='type-id-1013' visibility='default' filepath='./Include/cpython/objimpl.h' line='64' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='128'>
- <var-decl name='free' type-id='type-id-1015' visibility='default' filepath='./Include/cpython/objimpl.h' line='67' column='1'/>
+ <var-decl name='free' type-id='type-id-1014' visibility='default' filepath='./Include/cpython/objimpl.h' line='67' column='1'/>
</data-member>
</class-decl>
- <typedef-decl name='PyObjectArenaAllocator' type-id='type-id-1013' filepath='./Include/cpython/objimpl.h' line='68' column='1' id='type-id-504'/>
- <class-decl name='PyBaseExceptionObject' size-in-bits='576' is-struct='yes' naming-typedef-id='type-id-1016' visibility='default' filepath='./Include/cpython/pyerrors.h' line='13' column='1' id='type-id-1017'>
+ <typedef-decl name='PyObjectArenaAllocator' type-id='type-id-1012' filepath='./Include/cpython/objimpl.h' line='68' column='1' id='type-id-502'/>
+ <class-decl name='PyBaseExceptionObject' size-in-bits='576' is-struct='yes' naming-typedef-id='type-id-1015' visibility='default' filepath='./Include/cpython/pyerrors.h' line='13' column='1' id='type-id-1016'>
<data-member access='public' layout-offset-in-bits='0'>
<var-decl name='ob_base' type-id='type-id-355' visibility='default' filepath='./Include/cpython/pyerrors.h' line='14' column='1'/>
</data-member>
@@ -14820,39 +14808,39 @@
<var-decl name='suppress_context' type-id='type-id-52' visibility='default' filepath='./Include/cpython/pyerrors.h' line='14' column='1'/>
</data-member>
</class-decl>
- <typedef-decl name='PyBaseExceptionObject' type-id='type-id-1017' filepath='./Include/cpython/pyerrors.h' line='15' column='1' id='type-id-1016'/>
- <typedef-decl name='atexit_datacallbackfunc' type-id='type-id-511' filepath='./Include/cpython/pylifecycle.h' line='90' column='1' id='type-id-28'/>
- <class-decl name='PyMemAllocatorEx' size-in-bits='320' is-struct='yes' naming-typedef-id='type-id-500' visibility='default' filepath='./Include/cpython/pymem.h' line='33' column='1' id='type-id-1018'>
+ <typedef-decl name='PyBaseExceptionObject' type-id='type-id-1016' filepath='./Include/cpython/pyerrors.h' line='15' column='1' id='type-id-1015'/>
+ <typedef-decl name='atexit_datacallbackfunc' type-id='type-id-510' filepath='./Include/cpython/pylifecycle.h' line='90' column='1' id='type-id-28'/>
+ <class-decl name='PyMemAllocatorEx' size-in-bits='320' is-struct='yes' naming-typedef-id='type-id-500' visibility='default' filepath='./Include/cpython/pymem.h' line='33' column='1' id='type-id-1017'>
<data-member access='public' layout-offset-in-bits='0'>
<var-decl name='ctx' type-id='type-id-29' visibility='default' filepath='./Include/cpython/pymem.h' line='35' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='64'>
- <var-decl name='malloc' type-id='type-id-1014' visibility='default' filepath='./Include/cpython/pymem.h' line='38' column='1'/>
+ <var-decl name='malloc' type-id='type-id-1013' visibility='default' filepath='./Include/cpython/pymem.h' line='38' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='128'>
- <var-decl name='calloc' type-id='type-id-1019' visibility='default' filepath='./Include/cpython/pymem.h' line='41' column='1'/>
+ <var-decl name='calloc' type-id='type-id-1018' visibility='default' filepath='./Include/cpython/pymem.h' line='41' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='192'>
- <var-decl name='realloc' type-id='type-id-1020' visibility='default' filepath='./Include/cpython/pymem.h' line='44' column='1'/>
+ <var-decl name='realloc' type-id='type-id-1019' visibility='default' filepath='./Include/cpython/pymem.h' line='44' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='256'>
- <var-decl name='free' type-id='type-id-1021' visibility='default' filepath='./Include/cpython/pymem.h' line='47' column='1'/>
+ <var-decl name='free' type-id='type-id-1020' visibility='default' filepath='./Include/cpython/pymem.h' line='47' column='1'/>
</data-member>
</class-decl>
- <typedef-decl name='PyMemAllocatorEx' type-id='type-id-1018' filepath='./Include/cpython/pymem.h' line='48' column='1' id='type-id-500'/>
- <typedef-decl name='Py_tracefunc' type-id='type-id-1022' filepath='./Include/cpython/pystate.h' line='16' column='1' id='type-id-1023'/>
- <class-decl name='_err_stackitem' size-in-bits='128' is-struct='yes' visibility='default' filepath='./Include/cpython/pystate.h' line='32' column='1' id='type-id-1024'>
+ <typedef-decl name='PyMemAllocatorEx' type-id='type-id-1017' filepath='./Include/cpython/pymem.h' line='48' column='1' id='type-id-500'/>
+ <typedef-decl name='Py_tracefunc' type-id='type-id-1021' filepath='./Include/cpython/pystate.h' line='16' column='1' id='type-id-1022'/>
+ <class-decl name='_err_stackitem' size-in-bits='128' is-struct='yes' visibility='default' filepath='./Include/cpython/pystate.h' line='32' column='1' id='type-id-1023'>
<data-member access='public' layout-offset-in-bits='0'>
<var-decl name='exc_value' type-id='type-id-4' visibility='default' filepath='./Include/cpython/pystate.h' line='46' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='64'>
- <var-decl name='previous_item' type-id='type-id-1025' visibility='default' filepath='./Include/cpython/pystate.h' line='48' column='1'/>
+ <var-decl name='previous_item' type-id='type-id-1024' visibility='default' filepath='./Include/cpython/pystate.h' line='48' column='1'/>
</data-member>
</class-decl>
- <typedef-decl name='_PyErr_StackItem' type-id='type-id-1024' filepath='./Include/cpython/pystate.h' line='50' column='1' id='type-id-356'/>
- <class-decl name='_stack_chunk' size-in-bits='256' is-struct='yes' visibility='default' filepath='./Include/cpython/pystate.h' line='52' column='1' id='type-id-1026'>
+ <typedef-decl name='_PyErr_StackItem' type-id='type-id-1023' filepath='./Include/cpython/pystate.h' line='50' column='1' id='type-id-356'/>
+ <class-decl name='_stack_chunk' size-in-bits='256' is-struct='yes' visibility='default' filepath='./Include/cpython/pystate.h' line='52' column='1' id='type-id-1025'>
<data-member access='public' layout-offset-in-bits='0'>
- <var-decl name='previous' type-id='type-id-1027' visibility='default' filepath='./Include/cpython/pystate.h' line='53' column='1'/>
+ <var-decl name='previous' type-id='type-id-1026' visibility='default' filepath='./Include/cpython/pystate.h' line='53' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='64'>
<var-decl name='size' type-id='type-id-21' visibility='default' filepath='./Include/cpython/pystate.h' line='54' column='1'/>
@@ -14864,8 +14852,8 @@
<var-decl name='data' type-id='type-id-358' visibility='default' filepath='./Include/cpython/pystate.h' line='56' column='1'/>
</data-member>
</class-decl>
- <typedef-decl name='_PyStackChunk' type-id='type-id-1026' filepath='./Include/cpython/pystate.h' line='57' column='1' id='type-id-1028'/>
- <class-decl name='_ts' size-in-bits='2432' is-struct='yes' visibility='default' filepath='./Include/cpython/pystate.h' line='59' column='1' id='type-id-1029'>
+ <typedef-decl name='_PyStackChunk' type-id='type-id-1025' filepath='./Include/cpython/pystate.h' line='57' column='1' id='type-id-1027'/>
+ <class-decl name='_ts' size-in-bits='2432' is-struct='yes' visibility='default' filepath='./Include/cpython/pystate.h' line='59' column='1' id='type-id-1028'>
<data-member access='public' layout-offset-in-bits='0'>
<var-decl name='prev' type-id='type-id-26' visibility='default' filepath='./Include/cpython/pystate.h' line='62' column='1'/>
</data-member>
@@ -14879,7 +14867,7 @@
<var-decl name='eval_breaker' type-id='type-id-426' visibility='default' filepath='./Include/cpython/pystate.h' line='69' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='256'>
- <var-decl name='_status' type-id='type-id-1030' visibility='default' filepath='./Include/cpython/pystate.h' line='96' column='1'/>
+ <var-decl name='_status' type-id='type-id-1029' visibility='default' filepath='./Include/cpython/pystate.h' line='96' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='288'>
<var-decl name='_whence' type-id='type-id-5' visibility='default' filepath='./Include/cpython/pystate.h' line='106' column='1'/>
@@ -14909,10 +14897,10 @@
<var-decl name='current_frame' type-id='type-id-366' visibility='default' filepath='./Include/cpython/pystate.h' line='125' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='640'>
- <var-decl name='c_profilefunc' type-id='type-id-1023' visibility='default' filepath='./Include/cpython/pystate.h' line='127' column='1'/>
+ <var-decl name='c_profilefunc' type-id='type-id-1022' visibility='default' filepath='./Include/cpython/pystate.h' line='127' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='704'>
- <var-decl name='c_tracefunc' type-id='type-id-1023' visibility='default' filepath='./Include/cpython/pystate.h' line='128' column='1'/>
+ <var-decl name='c_tracefunc' type-id='type-id-1022' visibility='default' filepath='./Include/cpython/pystate.h' line='128' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='768'>
<var-decl name='c_profileobj' type-id='type-id-4' visibility='default' filepath='./Include/cpython/pystate.h' line='129' column='1'/>
@@ -14966,7 +14954,7 @@
<var-decl name='id' type-id='type-id-107' visibility='default' filepath='./Include/cpython/pystate.h' line='171' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='1856'>
- <var-decl name='datastack_chunk' type-id='type-id-1031' visibility='default' filepath='./Include/cpython/pystate.h' line='173' column='1'/>
+ <var-decl name='datastack_chunk' type-id='type-id-1030' visibility='default' filepath='./Include/cpython/pystate.h' line='173' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='1920'>
<var-decl name='datastack_top' type-id='type-id-236' visibility='default' filepath='./Include/cpython/pystate.h' line='174' column='1'/>
@@ -14990,7 +14978,7 @@
<var-decl name='threading_local_sentinel' type-id='type-id-4' visibility='default' filepath='./Include/cpython/pystate.h' line='202' column='1'/>
</data-member>
</class-decl>
- <class-decl name='__anonymous_struct__28' size-in-bits='32' is-struct='yes' is-anonymous='yes' visibility='default' filepath='./Include/cpython/pystate.h' line='71' column='1' id='type-id-1030'>
+ <class-decl name='__anonymous_struct__28' size-in-bits='32' is-struct='yes' is-anonymous='yes' visibility='default' filepath='./Include/cpython/pystate.h' line='71' column='1' id='type-id-1029'>
<data-member access='public' layout-offset-in-bits='0'>
<var-decl name='initialized' type-id='type-id-100' visibility='default' filepath='./Include/cpython/pystate.h' line='76' column='1'/>
</data-member>
@@ -15019,18 +15007,18 @@
<var-decl name='finalized' type-id='type-id-100' visibility='default' filepath='./Include/cpython/pystate.h' line='92' column='1'/>
</data-member>
</class-decl>
- <typedef-decl name='_PyFrameEvalFunction' type-id='type-id-1032' filepath='./Include/cpython/pystate.h' line='271' column='1' id='type-id-1033'/>
- <class-decl name='_Py_tss_t' size-in-bits='64' is-struct='yes' visibility='default' filepath='./Include/cpython/pythread.h' line='35' column='1' id='type-id-1034'>
+ <typedef-decl name='_PyFrameEvalFunction' type-id='type-id-1031' filepath='./Include/cpython/pystate.h' line='271' column='1' id='type-id-1032'/>
+ <class-decl name='_Py_tss_t' size-in-bits='64' is-struct='yes' visibility='default' filepath='./Include/cpython/pythread.h' line='35' column='1' id='type-id-1033'>
<data-member access='public' layout-offset-in-bits='0'>
<var-decl name='_is_initialized' type-id='type-id-5' visibility='default' filepath='./Include/cpython/pythread.h' line='36' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='32'>
- <var-decl name='_key' type-id='type-id-508' visibility='default' filepath='./Include/cpython/pythread.h' line='37' column='1'/>
+ <var-decl name='_key' type-id='type-id-506' visibility='default' filepath='./Include/cpython/pythread.h' line='37' column='1'/>
</data-member>
</class-decl>
<typedef-decl name='PyTime_t' type-id='type-id-459' filepath='./Include/cpython/pytime.h' line='10' column='1' id='type-id-211'/>
- <typedef-decl name='Py_AuditHookFunction' type-id='type-id-1035' filepath='./Include/cpython/sysmodule.h' line='5' column='1' id='type-id-238'/>
- <class-decl name='PyTupleObject' size-in-bits='256' is-struct='yes' naming-typedef-id='type-id-1036' visibility='default' filepath='./Include/cpython/tupleobject.h' line='5' column='1' id='type-id-1037'>
+ <typedef-decl name='Py_AuditHookFunction' type-id='type-id-1034' filepath='./Include/cpython/sysmodule.h' line='5' column='1' id='type-id-238'/>
+ <class-decl name='PyTupleObject' size-in-bits='256' is-struct='yes' naming-typedef-id='type-id-1035' visibility='default' filepath='./Include/cpython/tupleobject.h' line='5' column='1' id='type-id-1036'>
<data-member access='public' layout-offset-in-bits='0'>
<var-decl name='ob_base' type-id='type-id-318' visibility='default' filepath='./Include/cpython/tupleobject.h' line='6' column='1'/>
</data-member>
@@ -15038,8 +15026,8 @@
<var-decl name='ob_item' type-id='type-id-358' visibility='default' filepath='./Include/cpython/tupleobject.h' line='10' column='1'/>
</data-member>
</class-decl>
- <typedef-decl name='PyTupleObject' type-id='type-id-1037' filepath='./Include/cpython/tupleobject.h' line='11' column='1' id='type-id-1036'/>
- <class-decl name='PyASCIIObject' size-in-bits='320' is-struct='yes' naming-typedef-id='type-id-1038' visibility='default' filepath='./Include/cpython/unicodeobject.h' line='54' column='1' id='type-id-1039'>
+ <typedef-decl name='PyTupleObject' type-id='type-id-1036' filepath='./Include/cpython/tupleobject.h' line='11' column='1' id='type-id-1035'/>
+ <class-decl name='PyASCIIObject' size-in-bits='320' is-struct='yes' naming-typedef-id='type-id-1037' visibility='default' filepath='./Include/cpython/unicodeobject.h' line='54' column='1' id='type-id-1038'>
<data-member access='public' layout-offset-in-bits='0'>
<var-decl name='ob_base' type-id='type-id-355' visibility='default' filepath='./Include/cpython/unicodeobject.h' line='99' column='1'/>
</data-member>
@@ -15050,10 +15038,10 @@
<var-decl name='hash' type-id='type-id-299' visibility='default' filepath='./Include/cpython/unicodeobject.h' line='101' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='256'>
- <var-decl name='state' type-id='type-id-1040' visibility='default' filepath='./Include/cpython/unicodeobject.h' line='150' column='1'/>
+ <var-decl name='state' type-id='type-id-1039' visibility='default' filepath='./Include/cpython/unicodeobject.h' line='150' column='1'/>
</data-member>
</class-decl>
- <class-decl name='__anonymous_struct__60' size-in-bits='32' is-struct='yes' is-anonymous='yes' visibility='default' filepath='./Include/cpython/unicodeobject.h' line='102' column='1' id='type-id-1040'>
+ <class-decl name='__anonymous_struct__60' size-in-bits='32' is-struct='yes' is-anonymous='yes' visibility='default' filepath='./Include/cpython/unicodeobject.h' line='102' column='1' id='type-id-1039'>
<data-member access='public' layout-offset-in-bits='0'>
<var-decl name='interned' type-id='type-id-100' visibility='default' filepath='./Include/cpython/unicodeobject.h' line='112' column='1'/>
</data-member>
@@ -15070,10 +15058,10 @@
<var-decl name='statically_allocated' type-id='type-id-100' visibility='default' filepath='./Include/cpython/unicodeobject.h' line='146' column='1'/>
</data-member>
</class-decl>
- <typedef-decl name='PyASCIIObject' type-id='type-id-1039' filepath='./Include/cpython/unicodeobject.h' line='151' column='1' id='type-id-1038'/>
- <class-decl name='PyCompactUnicodeObject' size-in-bits='448' is-struct='yes' naming-typedef-id='type-id-1041' visibility='default' filepath='./Include/cpython/unicodeobject.h' line='156' column='1' id='type-id-1042'>
+ <typedef-decl name='PyASCIIObject' type-id='type-id-1038' filepath='./Include/cpython/unicodeobject.h' line='151' column='1' id='type-id-1037'/>
+ <class-decl name='PyCompactUnicodeObject' size-in-bits='448' is-struct='yes' naming-typedef-id='type-id-1040' visibility='default' filepath='./Include/cpython/unicodeobject.h' line='156' column='1' id='type-id-1041'>
<data-member access='public' layout-offset-in-bits='0'>
- <var-decl name='_base' type-id='type-id-1038' visibility='default' filepath='./Include/cpython/unicodeobject.h' line='157' column='1'/>
+ <var-decl name='_base' type-id='type-id-1037' visibility='default' filepath='./Include/cpython/unicodeobject.h' line='157' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='320'>
<var-decl name='utf8_length' type-id='type-id-7' visibility='default' filepath='./Include/cpython/unicodeobject.h' line='158' column='1'/>
@@ -15082,18 +15070,18 @@
<var-decl name='utf8' type-id='type-id-17' visibility='default' filepath='./Include/cpython/unicodeobject.h' line='160' column='1'/>
</data-member>
</class-decl>
- <typedef-decl name='PyCompactUnicodeObject' type-id='type-id-1042' filepath='./Include/cpython/unicodeobject.h' line='161' column='1' id='type-id-1041'/>
- <typedef-decl name='getter' type-id='type-id-943' filepath='./Include/descrobject.h' line='8' column='1' id='type-id-1043'/>
- <typedef-decl name='setter' type-id='type-id-1044' filepath='./Include/descrobject.h' line='9' column='1' id='type-id-1045'/>
- <class-decl name='PyGetSetDef' size-in-bits='320' is-struct='yes' visibility='default' filepath='./Include/descrobject.h' line='11' column='1' id='type-id-1046'>
+ <typedef-decl name='PyCompactUnicodeObject' type-id='type-id-1041' filepath='./Include/cpython/unicodeobject.h' line='161' column='1' id='type-id-1040'/>
+ <typedef-decl name='getter' type-id='type-id-942' filepath='./Include/descrobject.h' line='8' column='1' id='type-id-1042'/>
+ <typedef-decl name='setter' type-id='type-id-1043' filepath='./Include/descrobject.h' line='9' column='1' id='type-id-1044'/>
+ <class-decl name='PyGetSetDef' size-in-bits='320' is-struct='yes' visibility='default' filepath='./Include/descrobject.h' line='11' column='1' id='type-id-1045'>
<data-member access='public' layout-offset-in-bits='0'>
<var-decl name='name' type-id='type-id-6' visibility='default' filepath='./Include/descrobject.h' line='12' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='64'>
- <var-decl name='get' type-id='type-id-1043' visibility='default' filepath='./Include/descrobject.h' line='13' column='1'/>
+ <var-decl name='get' type-id='type-id-1042' visibility='default' filepath='./Include/descrobject.h' line='13' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='128'>
- <var-decl name='set' type-id='type-id-1045' visibility='default' filepath='./Include/descrobject.h' line='14' column='1'/>
+ <var-decl name='set' type-id='type-id-1044' visibility='default' filepath='./Include/descrobject.h' line='14' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='192'>
<var-decl name='doc' type-id='type-id-6' visibility='default' filepath='./Include/descrobject.h' line='15' column='1'/>
@@ -15102,7 +15090,7 @@
<var-decl name='closure' type-id='type-id-29' visibility='default' filepath='./Include/descrobject.h' line='16' column='1'/>
</data-member>
</class-decl>
- <class-decl name='PyMemberDef' size-in-bits='320' is-struct='yes' visibility='default' filepath='./Include/descrobject.h' line='41' column='1' id='type-id-1047'>
+ <class-decl name='PyMemberDef' size-in-bits='320' is-struct='yes' visibility='default' filepath='./Include/descrobject.h' line='41' column='1' id='type-id-1046'>
<data-member access='public' layout-offset-in-bits='0'>
<var-decl name='name' type-id='type-id-6' visibility='default' filepath='./Include/descrobject.h' line='42' column='1'/>
</data-member>
@@ -15119,10 +15107,10 @@
<var-decl name='doc' type-id='type-id-6' visibility='default' filepath='./Include/descrobject.h' line='46' column='1'/>
</data-member>
</class-decl>
- <typedef-decl name='identifier' type-id='type-id-4' filepath='./Include/internal/pycore_asdl.h' line='13' column='1' id='type-id-633'/>
- <typedef-decl name='string' type-id='type-id-4' filepath='./Include/internal/pycore_asdl.h' line='14' column='1' id='type-id-635'/>
- <typedef-decl name='constant' type-id='type-id-4' filepath='./Include/internal/pycore_asdl.h' line='16' column='1' id='type-id-660'/>
- <class-decl name='asdl_int_seq' size-in-bits='192' is-struct='yes' naming-typedef-id='type-id-1048' visibility='default' filepath='./Include/internal/pycore_asdl.h' line='42' column='1' id='type-id-1049'>
+ <typedef-decl name='identifier' type-id='type-id-4' filepath='./Include/internal/pycore_asdl.h' line='13' column='1' id='type-id-632'/>
+ <typedef-decl name='string' type-id='type-id-4' filepath='./Include/internal/pycore_asdl.h' line='14' column='1' id='type-id-634'/>
+ <typedef-decl name='constant' type-id='type-id-4' filepath='./Include/internal/pycore_asdl.h' line='16' column='1' id='type-id-659'/>
+ <class-decl name='asdl_int_seq' size-in-bits='192' is-struct='yes' naming-typedef-id='type-id-1047' visibility='default' filepath='./Include/internal/pycore_asdl.h' line='42' column='1' id='type-id-1048'>
<data-member access='public' layout-offset-in-bits='0'>
<var-decl name='size' type-id='type-id-7' visibility='default' filepath='./Include/internal/pycore_asdl.h' line='43' column='1'/>
</data-member>
@@ -15130,25 +15118,25 @@
<var-decl name='elements' type-id='type-id-260' visibility='default' filepath='./Include/internal/pycore_asdl.h' line='43' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='128'>
- <var-decl name='typed_elements' type-id='type-id-839' visibility='default' filepath='./Include/internal/pycore_asdl.h' line='44' column='1'/>
+ <var-decl name='typed_elements' type-id='type-id-838' visibility='default' filepath='./Include/internal/pycore_asdl.h' line='44' column='1'/>
</data-member>
</class-decl>
- <typedef-decl name='asdl_int_seq' type-id='type-id-1049' filepath='./Include/internal/pycore_asdl.h' line='45' column='1' id='type-id-1048'/>
- <typedef-decl name='expr_ty' type-id='type-id-1050' filepath='./Include/internal/pycore_ast.h' line='19' column='1' id='type-id-610'/>
- <enum-decl name='_expr_context' filepath='./Include/internal/pycore_ast.h' line='21' column='1' id='type-id-1051'>
+ <typedef-decl name='asdl_int_seq' type-id='type-id-1048' filepath='./Include/internal/pycore_asdl.h' line='45' column='1' id='type-id-1047'/>
+ <typedef-decl name='expr_ty' type-id='type-id-1049' filepath='./Include/internal/pycore_ast.h' line='19' column='1' id='type-id-609'/>
+ <enum-decl name='_expr_context' filepath='./Include/internal/pycore_ast.h' line='21' column='1' id='type-id-1050'>
<underlying-type type-id='type-id-31'/>
<enumerator name='Load' value='1'/>
<enumerator name='Store' value='2'/>
<enumerator name='Del' value='3'/>
</enum-decl>
- <typedef-decl name='expr_context_ty' type-id='type-id-1051' filepath='./Include/internal/pycore_ast.h' line='21' column='1' id='type-id-683'/>
- <enum-decl name='_boolop' filepath='./Include/internal/pycore_ast.h' line='23' column='1' id='type-id-1052'>
+ <typedef-decl name='expr_context_ty' type-id='type-id-1050' filepath='./Include/internal/pycore_ast.h' line='21' column='1' id='type-id-682'/>
+ <enum-decl name='_boolop' filepath='./Include/internal/pycore_ast.h' line='23' column='1' id='type-id-1051'>
<underlying-type type-id='type-id-31'/>
<enumerator name='And' value='1'/>
<enumerator name='Or' value='2'/>
</enum-decl>
- <typedef-decl name='boolop_ty' type-id='type-id-1052' filepath='./Include/internal/pycore_ast.h' line='23' column='1' id='type-id-741'/>
- <enum-decl name='_operator' filepath='./Include/internal/pycore_ast.h' line='25' column='1' id='type-id-1053'>
+ <typedef-decl name='boolop_ty' type-id='type-id-1051' filepath='./Include/internal/pycore_ast.h' line='23' column='1' id='type-id-740'/>
+ <enum-decl name='_operator' filepath='./Include/internal/pycore_ast.h' line='25' column='1' id='type-id-1052'>
<underlying-type type-id='type-id-31'/>
<enumerator name='Add' value='1'/>
<enumerator name='Sub' value='2'/>
@@ -15164,20 +15152,20 @@
<enumerator name='BitAnd' value='12'/>
<enumerator name='FloorDiv' value='13'/>
</enum-decl>
- <typedef-decl name='operator_ty' type-id='type-id-1053' filepath='./Include/internal/pycore_ast.h' line='27' column='1' id='type-id-638'/>
- <enum-decl name='_unaryop' filepath='./Include/internal/pycore_ast.h' line='29' column='1' id='type-id-1054'>
+ <typedef-decl name='operator_ty' type-id='type-id-1052' filepath='./Include/internal/pycore_ast.h' line='27' column='1' id='type-id-637'/>
+ <enum-decl name='_unaryop' filepath='./Include/internal/pycore_ast.h' line='29' column='1' id='type-id-1053'>
<underlying-type type-id='type-id-31'/>
<enumerator name='Invert' value='1'/>
<enumerator name='Not' value='2'/>
<enumerator name='UAdd' value='3'/>
<enumerator name='USub' value='4'/>
</enum-decl>
- <typedef-decl name='unaryop_ty' type-id='type-id-1054' filepath='./Include/internal/pycore_ast.h' line='29' column='1' id='type-id-742'/>
- <typedef-decl name='comprehension_ty' type-id='type-id-1055' filepath='./Include/internal/pycore_ast.h' line='34' column='1' id='type-id-744'/>
- <typedef-decl name='arguments_ty' type-id='type-id-1056' filepath='./Include/internal/pycore_ast.h' line='38' column='1' id='type-id-634'/>
- <typedef-decl name='arg_ty' type-id='type-id-1057' filepath='./Include/internal/pycore_ast.h' line='40' column='1' id='type-id-684'/>
- <typedef-decl name='keyword_ty' type-id='type-id-1058' filepath='./Include/internal/pycore_ast.h' line='42' column='1' id='type-id-745'/>
- <class-decl name='asdl_expr_seq' size-in-bits='192' is-struct='yes' naming-typedef-id='type-id-1059' visibility='default' filepath='./Include/internal/pycore_ast.h' line='71' column='1' id='type-id-1060'>
+ <typedef-decl name='unaryop_ty' type-id='type-id-1053' filepath='./Include/internal/pycore_ast.h' line='29' column='1' id='type-id-741'/>
+ <typedef-decl name='comprehension_ty' type-id='type-id-1054' filepath='./Include/internal/pycore_ast.h' line='34' column='1' id='type-id-743'/>
+ <typedef-decl name='arguments_ty' type-id='type-id-1055' filepath='./Include/internal/pycore_ast.h' line='38' column='1' id='type-id-633'/>
+ <typedef-decl name='arg_ty' type-id='type-id-1056' filepath='./Include/internal/pycore_ast.h' line='40' column='1' id='type-id-683'/>
+ <typedef-decl name='keyword_ty' type-id='type-id-1057' filepath='./Include/internal/pycore_ast.h' line='42' column='1' id='type-id-744'/>
+ <class-decl name='asdl_expr_seq' size-in-bits='192' is-struct='yes' naming-typedef-id='type-id-1058' visibility='default' filepath='./Include/internal/pycore_ast.h' line='71' column='1' id='type-id-1059'>
<data-member access='public' layout-offset-in-bits='0'>
<var-decl name='size' type-id='type-id-7' visibility='default' filepath='./Include/internal/pycore_ast.h' line='72' column='1'/>
</data-member>
@@ -15185,11 +15173,11 @@
<var-decl name='elements' type-id='type-id-260' visibility='default' filepath='./Include/internal/pycore_ast.h' line='72' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='128'>
- <var-decl name='typed_elements' type-id='type-id-830' visibility='default' filepath='./Include/internal/pycore_ast.h' line='73' column='1'/>
+ <var-decl name='typed_elements' type-id='type-id-829' visibility='default' filepath='./Include/internal/pycore_ast.h' line='73' column='1'/>
</data-member>
</class-decl>
- <typedef-decl name='asdl_expr_seq' type-id='type-id-1060' filepath='./Include/internal/pycore_ast.h' line='74' column='1' id='type-id-1059'/>
- <class-decl name='asdl_comprehension_seq' size-in-bits='192' is-struct='yes' naming-typedef-id='type-id-1061' visibility='default' filepath='./Include/internal/pycore_ast.h' line='78' column='1' id='type-id-1062'>
+ <typedef-decl name='asdl_expr_seq' type-id='type-id-1059' filepath='./Include/internal/pycore_ast.h' line='74' column='1' id='type-id-1058'/>
+ <class-decl name='asdl_comprehension_seq' size-in-bits='192' is-struct='yes' naming-typedef-id='type-id-1060' visibility='default' filepath='./Include/internal/pycore_ast.h' line='78' column='1' id='type-id-1061'>
<data-member access='public' layout-offset-in-bits='0'>
<var-decl name='size' type-id='type-id-7' visibility='default' filepath='./Include/internal/pycore_ast.h' line='79' column='1'/>
</data-member>
@@ -15197,11 +15185,11 @@
<var-decl name='elements' type-id='type-id-260' visibility='default' filepath='./Include/internal/pycore_ast.h' line='79' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='128'>
- <var-decl name='typed_elements' type-id='type-id-826' visibility='default' filepath='./Include/internal/pycore_ast.h' line='80' column='1'/>
+ <var-decl name='typed_elements' type-id='type-id-825' visibility='default' filepath='./Include/internal/pycore_ast.h' line='80' column='1'/>
</data-member>
</class-decl>
- <typedef-decl name='asdl_comprehension_seq' type-id='type-id-1062' filepath='./Include/internal/pycore_ast.h' line='81' column='1' id='type-id-1061'/>
- <class-decl name='asdl_arg_seq' size-in-bits='192' is-struct='yes' naming-typedef-id='type-id-1063' visibility='default' filepath='./Include/internal/pycore_ast.h' line='101' column='1' id='type-id-1064'>
+ <typedef-decl name='asdl_comprehension_seq' type-id='type-id-1061' filepath='./Include/internal/pycore_ast.h' line='81' column='1' id='type-id-1060'/>
+ <class-decl name='asdl_arg_seq' size-in-bits='192' is-struct='yes' naming-typedef-id='type-id-1062' visibility='default' filepath='./Include/internal/pycore_ast.h' line='101' column='1' id='type-id-1063'>
<data-member access='public' layout-offset-in-bits='0'>
<var-decl name='size' type-id='type-id-7' visibility='default' filepath='./Include/internal/pycore_ast.h' line='102' column='1'/>
</data-member>
@@ -15209,11 +15197,11 @@
<var-decl name='elements' type-id='type-id-260' visibility='default' filepath='./Include/internal/pycore_ast.h' line='102' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='128'>
- <var-decl name='typed_elements' type-id='type-id-803' visibility='default' filepath='./Include/internal/pycore_ast.h' line='103' column='1'/>
+ <var-decl name='typed_elements' type-id='type-id-802' visibility='default' filepath='./Include/internal/pycore_ast.h' line='103' column='1'/>
</data-member>
</class-decl>
- <typedef-decl name='asdl_arg_seq' type-id='type-id-1064' filepath='./Include/internal/pycore_ast.h' line='104' column='1' id='type-id-1063'/>
- <class-decl name='asdl_keyword_seq' size-in-bits='192' is-struct='yes' naming-typedef-id='type-id-1065' visibility='default' filepath='./Include/internal/pycore_ast.h' line='108' column='1' id='type-id-1066'>
+ <typedef-decl name='asdl_arg_seq' type-id='type-id-1063' filepath='./Include/internal/pycore_ast.h' line='104' column='1' id='type-id-1062'/>
+ <class-decl name='asdl_keyword_seq' size-in-bits='192' is-struct='yes' naming-typedef-id='type-id-1064' visibility='default' filepath='./Include/internal/pycore_ast.h' line='108' column='1' id='type-id-1065'>
<data-member access='public' layout-offset-in-bits='0'>
<var-decl name='size' type-id='type-id-7' visibility='default' filepath='./Include/internal/pycore_ast.h' line='109' column='1'/>
</data-member>
@@ -15221,11 +15209,11 @@
<var-decl name='elements' type-id='type-id-260' visibility='default' filepath='./Include/internal/pycore_ast.h' line='109' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='128'>
- <var-decl name='typed_elements' type-id='type-id-843' visibility='default' filepath='./Include/internal/pycore_ast.h' line='110' column='1'/>
+ <var-decl name='typed_elements' type-id='type-id-842' visibility='default' filepath='./Include/internal/pycore_ast.h' line='110' column='1'/>
</data-member>
</class-decl>
- <typedef-decl name='asdl_keyword_seq' type-id='type-id-1066' filepath='./Include/internal/pycore_ast.h' line='111' column='1' id='type-id-1065'/>
- <enum-decl name='_expr_kind' filepath='./Include/internal/pycore_ast.h' line='359' column='1' id='type-id-1067'>
+ <typedef-decl name='asdl_keyword_seq' type-id='type-id-1065' filepath='./Include/internal/pycore_ast.h' line='111' column='1' id='type-id-1064'/>
+ <enum-decl name='_expr_kind' filepath='./Include/internal/pycore_ast.h' line='359' column='1' id='type-id-1066'>
<underlying-type type-id='type-id-31'/>
<enumerator name='BoolOp_kind' value='1'/>
<enumerator name='NamedExpr_kind' value='2'/>
@@ -15255,12 +15243,12 @@
<enumerator name='Tuple_kind' value='26'/>
<enumerator name='Slice_kind' value='27'/>
</enum-decl>
- <class-decl name='_expr' size-in-bits='384' is-struct='yes' visibility='default' filepath='./Include/internal/pycore_ast.h' line='367' column='1' id='type-id-1068'>
+ <class-decl name='_expr' size-in-bits='384' is-struct='yes' visibility='default' filepath='./Include/internal/pycore_ast.h' line='367' column='1' id='type-id-1067'>
<data-member access='public' layout-offset-in-bits='0'>
- <var-decl name='kind' type-id='type-id-1067' visibility='default' filepath='./Include/internal/pycore_ast.h' line='368' column='1'/>
+ <var-decl name='kind' type-id='type-id-1066' visibility='default' filepath='./Include/internal/pycore_ast.h' line='368' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='64'>
- <var-decl name='v' type-id='type-id-1069' visibility='default' filepath='./Include/internal/pycore_ast.h' line='509' column='1'/>
+ <var-decl name='v' type-id='type-id-1068' visibility='default' filepath='./Include/internal/pycore_ast.h' line='509' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='256'>
<var-decl name='lineno' type-id='type-id-5' visibility='default' filepath='./Include/internal/pycore_ast.h' line='510' column='1'/>
@@ -15275,329 +15263,329 @@
<var-decl name='end_col_offset' type-id='type-id-5' visibility='default' filepath='./Include/internal/pycore_ast.h' line='513' column='1'/>
</data-member>
</class-decl>
- <union-decl name='__anonymous_union__1' size-in-bits='192' is-anonymous='yes' visibility='default' filepath='./Include/internal/pycore_ast.h' line='369' column='1' id='type-id-1069'>
+ <union-decl name='__anonymous_union__1' size-in-bits='192' is-anonymous='yes' visibility='default' filepath='./Include/internal/pycore_ast.h' line='369' column='1' id='type-id-1068'>
<data-member access='public'>
- <var-decl name='BoolOp' type-id='type-id-1070' visibility='default' filepath='./Include/internal/pycore_ast.h' line='373' column='1'/>
+ <var-decl name='BoolOp' type-id='type-id-1069' visibility='default' filepath='./Include/internal/pycore_ast.h' line='373' column='1'/>
</data-member>
<data-member access='public'>
- <var-decl name='NamedExpr' type-id='type-id-1071' visibility='default' filepath='./Include/internal/pycore_ast.h' line='378' column='1'/>
+ <var-decl name='NamedExpr' type-id='type-id-1070' visibility='default' filepath='./Include/internal/pycore_ast.h' line='378' column='1'/>
</data-member>
<data-member access='public'>
- <var-decl name='BinOp' type-id='type-id-1072' visibility='default' filepath='./Include/internal/pycore_ast.h' line='384' column='1'/>
+ <var-decl name='BinOp' type-id='type-id-1071' visibility='default' filepath='./Include/internal/pycore_ast.h' line='384' column='1'/>
</data-member>
<data-member access='public'>
- <var-decl name='UnaryOp' type-id='type-id-1073' visibility='default' filepath='./Include/internal/pycore_ast.h' line='389' column='1'/>
+ <var-decl name='UnaryOp' type-id='type-id-1072' visibility='default' filepath='./Include/internal/pycore_ast.h' line='389' column='1'/>
</data-member>
<data-member access='public'>
- <var-decl name='Lambda' type-id='type-id-1074' visibility='default' filepath='./Include/internal/pycore_ast.h' line='394' column='1'/>
+ <var-decl name='Lambda' type-id='type-id-1073' visibility='default' filepath='./Include/internal/pycore_ast.h' line='394' column='1'/>
</data-member>
<data-member access='public'>
- <var-decl name='IfExp' type-id='type-id-1075' visibility='default' filepath='./Include/internal/pycore_ast.h' line='400' column='1'/>
+ <var-decl name='IfExp' type-id='type-id-1074' visibility='default' filepath='./Include/internal/pycore_ast.h' line='400' column='1'/>
</data-member>
<data-member access='public'>
- <var-decl name='Dict' type-id='type-id-1076' visibility='default' filepath='./Include/internal/pycore_ast.h' line='405' column='1'/>
+ <var-decl name='Dict' type-id='type-id-1075' visibility='default' filepath='./Include/internal/pycore_ast.h' line='405' column='1'/>
</data-member>
<data-member access='public'>
- <var-decl name='Set' type-id='type-id-1077' visibility='default' filepath='./Include/internal/pycore_ast.h' line='409' column='1'/>
+ <var-decl name='Set' type-id='type-id-1076' visibility='default' filepath='./Include/internal/pycore_ast.h' line='409' column='1'/>
</data-member>
<data-member access='public'>
- <var-decl name='ListComp' type-id='type-id-1078' visibility='default' filepath='./Include/internal/pycore_ast.h' line='414' column='1'/>
+ <var-decl name='ListComp' type-id='type-id-1077' visibility='default' filepath='./Include/internal/pycore_ast.h' line='414' column='1'/>
</data-member>
<data-member access='public'>
- <var-decl name='SetComp' type-id='type-id-1078' visibility='default' filepath='./Include/internal/pycore_ast.h' line='419' column='1'/>
+ <var-decl name='SetComp' type-id='type-id-1077' visibility='default' filepath='./Include/internal/pycore_ast.h' line='419' column='1'/>
</data-member>
<data-member access='public'>
- <var-decl name='DictComp' type-id='type-id-1079' visibility='default' filepath='./Include/internal/pycore_ast.h' line='425' column='1'/>
+ <var-decl name='DictComp' type-id='type-id-1078' visibility='default' filepath='./Include/internal/pycore_ast.h' line='425' column='1'/>
</data-member>
<data-member access='public'>
- <var-decl name='GeneratorExp' type-id='type-id-1078' visibility='default' filepath='./Include/internal/pycore_ast.h' line='430' column='1'/>
+ <var-decl name='GeneratorExp' type-id='type-id-1077' visibility='default' filepath='./Include/internal/pycore_ast.h' line='430' column='1'/>
</data-member>
<data-member access='public'>
- <var-decl name='Await' type-id='type-id-617' visibility='default' filepath='./Include/internal/pycore_ast.h' line='434' column='1'/>
+ <var-decl name='Await' type-id='type-id-616' visibility='default' filepath='./Include/internal/pycore_ast.h' line='434' column='1'/>
</data-member>
<data-member access='public'>
- <var-decl name='Yield' type-id='type-id-617' visibility='default' filepath='./Include/internal/pycore_ast.h' line='438' column='1'/>
+ <var-decl name='Yield' type-id='type-id-616' visibility='default' filepath='./Include/internal/pycore_ast.h' line='438' column='1'/>
</data-member>
<data-member access='public'>
- <var-decl name='YieldFrom' type-id='type-id-617' visibility='default' filepath='./Include/internal/pycore_ast.h' line='442' column='1'/>
+ <var-decl name='YieldFrom' type-id='type-id-616' visibility='default' filepath='./Include/internal/pycore_ast.h' line='442' column='1'/>
</data-member>
<data-member access='public'>
- <var-decl name='Compare' type-id='type-id-1080' visibility='default' filepath='./Include/internal/pycore_ast.h' line='448' column='1'/>
+ <var-decl name='Compare' type-id='type-id-1079' visibility='default' filepath='./Include/internal/pycore_ast.h' line='448' column='1'/>
</data-member>
<data-member access='public'>
- <var-decl name='Call' type-id='type-id-1081' visibility='default' filepath='./Include/internal/pycore_ast.h' line='454' column='1'/>
+ <var-decl name='Call' type-id='type-id-1080' visibility='default' filepath='./Include/internal/pycore_ast.h' line='454' column='1'/>
</data-member>
<data-member access='public'>
- <var-decl name='FormattedValue' type-id='type-id-1082' visibility='default' filepath='./Include/internal/pycore_ast.h' line='460' column='1'/>
+ <var-decl name='FormattedValue' type-id='type-id-1081' visibility='default' filepath='./Include/internal/pycore_ast.h' line='460' column='1'/>
</data-member>
<data-member access='public'>
- <var-decl name='JoinedStr' type-id='type-id-1083' visibility='default' filepath='./Include/internal/pycore_ast.h' line='464' column='1'/>
+ <var-decl name='JoinedStr' type-id='type-id-1082' visibility='default' filepath='./Include/internal/pycore_ast.h' line='464' column='1'/>
</data-member>
<data-member access='public'>
- <var-decl name='Constant' type-id='type-id-1084' visibility='default' filepath='./Include/internal/pycore_ast.h' line='469' column='1'/>
+ <var-decl name='Constant' type-id='type-id-1083' visibility='default' filepath='./Include/internal/pycore_ast.h' line='469' column='1'/>
</data-member>
<data-member access='public'>
- <var-decl name='Attribute' type-id='type-id-1085' visibility='default' filepath='./Include/internal/pycore_ast.h' line='475' column='1'/>
+ <var-decl name='Attribute' type-id='type-id-1084' visibility='default' filepath='./Include/internal/pycore_ast.h' line='475' column='1'/>
</data-member>
<data-member access='public'>
- <var-decl name='Subscript' type-id='type-id-1086' visibility='default' filepath='./Include/internal/pycore_ast.h' line='481' column='1'/>
+ <var-decl name='Subscript' type-id='type-id-1085' visibility='default' filepath='./Include/internal/pycore_ast.h' line='481' column='1'/>
</data-member>
<data-member access='public'>
- <var-decl name='Starred' type-id='type-id-1087' visibility='default' filepath='./Include/internal/pycore_ast.h' line='486' column='1'/>
+ <var-decl name='Starred' type-id='type-id-1086' visibility='default' filepath='./Include/internal/pycore_ast.h' line='486' column='1'/>
</data-member>
<data-member access='public'>
- <var-decl name='Name' type-id='type-id-1088' visibility='default' filepath='./Include/internal/pycore_ast.h' line='491' column='1'/>
+ <var-decl name='Name' type-id='type-id-1087' visibility='default' filepath='./Include/internal/pycore_ast.h' line='491' column='1'/>
</data-member>
<data-member access='public'>
- <var-decl name='List' type-id='type-id-1089' visibility='default' filepath='./Include/internal/pycore_ast.h' line='496' column='1'/>
+ <var-decl name='List' type-id='type-id-1088' visibility='default' filepath='./Include/internal/pycore_ast.h' line='496' column='1'/>
</data-member>
<data-member access='public'>
- <var-decl name='Tuple' type-id='type-id-1089' visibility='default' filepath='./Include/internal/pycore_ast.h' line='501' column='1'/>
+ <var-decl name='Tuple' type-id='type-id-1088' visibility='default' filepath='./Include/internal/pycore_ast.h' line='501' column='1'/>
</data-member>
<data-member access='public'>
- <var-decl name='Slice' type-id='type-id-1090' visibility='default' filepath='./Include/internal/pycore_ast.h' line='507' column='1'/>
+ <var-decl name='Slice' type-id='type-id-1089' visibility='default' filepath='./Include/internal/pycore_ast.h' line='507' column='1'/>
</data-member>
</union-decl>
- <class-decl name='__anonymous_struct__1' size-in-bits='128' is-struct='yes' is-anonymous='yes' visibility='default' filepath='./Include/internal/pycore_ast.h' line='370' column='1' id='type-id-1070'>
+ <class-decl name='__anonymous_struct__1' size-in-bits='128' is-struct='yes' is-anonymous='yes' visibility='default' filepath='./Include/internal/pycore_ast.h' line='370' column='1' id='type-id-1069'>
<data-member access='public' layout-offset-in-bits='0'>
- <var-decl name='op' type-id='type-id-741' visibility='default' filepath='./Include/internal/pycore_ast.h' line='371' column='1'/>
+ <var-decl name='op' type-id='type-id-740' visibility='default' filepath='./Include/internal/pycore_ast.h' line='371' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='64'>
- <var-decl name='values' type-id='type-id-611' visibility='default' filepath='./Include/internal/pycore_ast.h' line='372' column='1'/>
+ <var-decl name='values' type-id='type-id-610' visibility='default' filepath='./Include/internal/pycore_ast.h' line='372' column='1'/>
</data-member>
</class-decl>
- <class-decl name='__anonymous_struct__2' size-in-bits='128' is-struct='yes' is-anonymous='yes' visibility='default' filepath='./Include/internal/pycore_ast.h' line='375' column='1' id='type-id-1071'>
+ <class-decl name='__anonymous_struct__2' size-in-bits='128' is-struct='yes' is-anonymous='yes' visibility='default' filepath='./Include/internal/pycore_ast.h' line='375' column='1' id='type-id-1070'>
<data-member access='public' layout-offset-in-bits='0'>
- <var-decl name='target' type-id='type-id-610' visibility='default' filepath='./Include/internal/pycore_ast.h' line='376' column='1'/>
+ <var-decl name='target' type-id='type-id-609' visibility='default' filepath='./Include/internal/pycore_ast.h' line='376' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='64'>
- <var-decl name='value' type-id='type-id-610' visibility='default' filepath='./Include/internal/pycore_ast.h' line='377' column='1'/>
+ <var-decl name='value' type-id='type-id-609' visibility='default' filepath='./Include/internal/pycore_ast.h' line='377' column='1'/>
</data-member>
</class-decl>
- <class-decl name='__anonymous_struct__3' size-in-bits='192' is-struct='yes' is-anonymous='yes' visibility='default' filepath='./Include/internal/pycore_ast.h' line='380' column='1' id='type-id-1072'>
+ <class-decl name='__anonymous_struct__3' size-in-bits='192' is-struct='yes' is-anonymous='yes' visibility='default' filepath='./Include/internal/pycore_ast.h' line='380' column='1' id='type-id-1071'>
<data-member access='public' layout-offset-in-bits='0'>
- <var-decl name='left' type-id='type-id-610' visibility='default' filepath='./Include/internal/pycore_ast.h' line='381' column='1'/>
+ <var-decl name='left' type-id='type-id-609' visibility='default' filepath='./Include/internal/pycore_ast.h' line='381' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='64'>
- <var-decl name='op' type-id='type-id-638' visibility='default' filepath='./Include/internal/pycore_ast.h' line='382' column='1'/>
+ <var-decl name='op' type-id='type-id-637' visibility='default' filepath='./Include/internal/pycore_ast.h' line='382' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='128'>
- <var-decl name='right' type-id='type-id-610' visibility='default' filepath='./Include/internal/pycore_ast.h' line='383' column='1'/>
+ <var-decl name='right' type-id='type-id-609' visibility='default' filepath='./Include/internal/pycore_ast.h' line='383' column='1'/>
</data-member>
</class-decl>
- <class-decl name='__anonymous_struct__4' size-in-bits='128' is-struct='yes' is-anonymous='yes' visibility='default' filepath='./Include/internal/pycore_ast.h' line='386' column='1' id='type-id-1073'>
+ <class-decl name='__anonymous_struct__4' size-in-bits='128' is-struct='yes' is-anonymous='yes' visibility='default' filepath='./Include/internal/pycore_ast.h' line='386' column='1' id='type-id-1072'>
<data-member access='public' layout-offset-in-bits='0'>
- <var-decl name='op' type-id='type-id-742' visibility='default' filepath='./Include/internal/pycore_ast.h' line='387' column='1'/>
+ <var-decl name='op' type-id='type-id-741' visibility='default' filepath='./Include/internal/pycore_ast.h' line='387' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='64'>
- <var-decl name='operand' type-id='type-id-610' visibility='default' filepath='./Include/internal/pycore_ast.h' line='388' column='1'/>
+ <var-decl name='operand' type-id='type-id-609' visibility='default' filepath='./Include/internal/pycore_ast.h' line='388' column='1'/>
</data-member>
</class-decl>
- <class-decl name='__anonymous_struct__5' size-in-bits='128' is-struct='yes' is-anonymous='yes' visibility='default' filepath='./Include/internal/pycore_ast.h' line='391' column='1' id='type-id-1074'>
+ <class-decl name='__anonymous_struct__5' size-in-bits='128' is-struct='yes' is-anonymous='yes' visibility='default' filepath='./Include/internal/pycore_ast.h' line='391' column='1' id='type-id-1073'>
<data-member access='public' layout-offset-in-bits='0'>
- <var-decl name='args' type-id='type-id-634' visibility='default' filepath='./Include/internal/pycore_ast.h' line='392' column='1'/>
+ <var-decl name='args' type-id='type-id-633' visibility='default' filepath='./Include/internal/pycore_ast.h' line='392' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='64'>
- <var-decl name='body' type-id='type-id-610' visibility='default' filepath='./Include/internal/pycore_ast.h' line='393' column='1'/>
+ <var-decl name='body' type-id='type-id-609' visibility='default' filepath='./Include/internal/pycore_ast.h' line='393' column='1'/>
</data-member>
</class-decl>
- <class-decl name='__anonymous_struct__6' size-in-bits='192' is-struct='yes' is-anonymous='yes' visibility='default' filepath='./Include/internal/pycore_ast.h' line='396' column='1' id='type-id-1075'>
+ <class-decl name='__anonymous_struct__6' size-in-bits='192' is-struct='yes' is-anonymous='yes' visibility='default' filepath='./Include/internal/pycore_ast.h' line='396' column='1' id='type-id-1074'>
<data-member access='public' layout-offset-in-bits='0'>
- <var-decl name='test' type-id='type-id-610' visibility='default' filepath='./Include/internal/pycore_ast.h' line='397' column='1'/>
+ <var-decl name='test' type-id='type-id-609' visibility='default' filepath='./Include/internal/pycore_ast.h' line='397' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='64'>
- <var-decl name='body' type-id='type-id-610' visibility='default' filepath='./Include/internal/pycore_ast.h' line='398' column='1'/>
+ <var-decl name='body' type-id='type-id-609' visibility='default' filepath='./Include/internal/pycore_ast.h' line='398' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='128'>
- <var-decl name='orelse' type-id='type-id-610' visibility='default' filepath='./Include/internal/pycore_ast.h' line='399' column='1'/>
+ <var-decl name='orelse' type-id='type-id-609' visibility='default' filepath='./Include/internal/pycore_ast.h' line='399' column='1'/>
</data-member>
</class-decl>
- <class-decl name='__anonymous_struct__7' size-in-bits='128' is-struct='yes' is-anonymous='yes' visibility='default' filepath='./Include/internal/pycore_ast.h' line='402' column='1' id='type-id-1076'>
+ <class-decl name='__anonymous_struct__7' size-in-bits='128' is-struct='yes' is-anonymous='yes' visibility='default' filepath='./Include/internal/pycore_ast.h' line='402' column='1' id='type-id-1075'>
<data-member access='public' layout-offset-in-bits='0'>
- <var-decl name='keys' type-id='type-id-611' visibility='default' filepath='./Include/internal/pycore_ast.h' line='403' column='1'/>
+ <var-decl name='keys' type-id='type-id-610' visibility='default' filepath='./Include/internal/pycore_ast.h' line='403' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='64'>
- <var-decl name='values' type-id='type-id-611' visibility='default' filepath='./Include/internal/pycore_ast.h' line='404' column='1'/>
+ <var-decl name='values' type-id='type-id-610' visibility='default' filepath='./Include/internal/pycore_ast.h' line='404' column='1'/>
</data-member>
</class-decl>
- <class-decl name='__anonymous_struct__8' size-in-bits='64' is-struct='yes' is-anonymous='yes' visibility='default' filepath='./Include/internal/pycore_ast.h' line='407' column='1' id='type-id-1077'>
+ <class-decl name='__anonymous_struct__8' size-in-bits='64' is-struct='yes' is-anonymous='yes' visibility='default' filepath='./Include/internal/pycore_ast.h' line='407' column='1' id='type-id-1076'>
<data-member access='public' layout-offset-in-bits='0'>
- <var-decl name='elts' type-id='type-id-611' visibility='default' filepath='./Include/internal/pycore_ast.h' line='408' column='1'/>
+ <var-decl name='elts' type-id='type-id-610' visibility='default' filepath='./Include/internal/pycore_ast.h' line='408' column='1'/>
</data-member>
</class-decl>
- <class-decl name='__anonymous_struct__9' size-in-bits='128' is-struct='yes' is-anonymous='yes' visibility='default' filepath='./Include/internal/pycore_ast.h' line='411' column='1' id='type-id-1078'>
+ <class-decl name='__anonymous_struct__9' size-in-bits='128' is-struct='yes' is-anonymous='yes' visibility='default' filepath='./Include/internal/pycore_ast.h' line='411' column='1' id='type-id-1077'>
<data-member access='public' layout-offset-in-bits='0'>
- <var-decl name='elt' type-id='type-id-610' visibility='default' filepath='./Include/internal/pycore_ast.h' line='412' column='1'/>
+ <var-decl name='elt' type-id='type-id-609' visibility='default' filepath='./Include/internal/pycore_ast.h' line='412' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='64'>
- <var-decl name='generators' type-id='type-id-743' visibility='default' filepath='./Include/internal/pycore_ast.h' line='413' column='1'/>
+ <var-decl name='generators' type-id='type-id-742' visibility='default' filepath='./Include/internal/pycore_ast.h' line='413' column='1'/>
</data-member>
</class-decl>
- <class-decl name='__anonymous_struct__11' size-in-bits='192' is-struct='yes' is-anonymous='yes' visibility='default' filepath='./Include/internal/pycore_ast.h' line='421' column='1' id='type-id-1079'>
+ <class-decl name='__anonymous_struct__11' size-in-bits='192' is-struct='yes' is-anonymous='yes' visibility='default' filepath='./Include/internal/pycore_ast.h' line='421' column='1' id='type-id-1078'>
<data-member access='public' layout-offset-in-bits='0'>
- <var-decl name='key' type-id='type-id-610' visibility='default' filepath='./Include/internal/pycore_ast.h' line='422' column='1'/>
+ <var-decl name='key' type-id='type-id-609' visibility='default' filepath='./Include/internal/pycore_ast.h' line='422' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='64'>
- <var-decl name='value' type-id='type-id-610' visibility='default' filepath='./Include/internal/pycore_ast.h' line='423' column='1'/>
+ <var-decl name='value' type-id='type-id-609' visibility='default' filepath='./Include/internal/pycore_ast.h' line='423' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='128'>
- <var-decl name='generators' type-id='type-id-743' visibility='default' filepath='./Include/internal/pycore_ast.h' line='424' column='1'/>
+ <var-decl name='generators' type-id='type-id-742' visibility='default' filepath='./Include/internal/pycore_ast.h' line='424' column='1'/>
</data-member>
</class-decl>
- <class-decl name='__anonymous_struct__13' size-in-bits='64' is-struct='yes' is-anonymous='yes' visibility='default' filepath='./Include/internal/pycore_ast.h' line='432' column='1' id='type-id-617'>
+ <class-decl name='__anonymous_struct__13' size-in-bits='64' is-struct='yes' is-anonymous='yes' visibility='default' filepath='./Include/internal/pycore_ast.h' line='432' column='1' id='type-id-616'>
<data-member access='public' layout-offset-in-bits='0'>
- <var-decl name='value' type-id='type-id-610' visibility='default' filepath='./Include/internal/pycore_ast.h' line='433' column='1'/>
+ <var-decl name='value' type-id='type-id-609' visibility='default' filepath='./Include/internal/pycore_ast.h' line='433' column='1'/>
</data-member>
</class-decl>
- <class-decl name='__anonymous_struct__16' size-in-bits='192' is-struct='yes' is-anonymous='yes' visibility='default' filepath='./Include/internal/pycore_ast.h' line='444' column='1' id='type-id-1080'>
+ <class-decl name='__anonymous_struct__16' size-in-bits='192' is-struct='yes' is-anonymous='yes' visibility='default' filepath='./Include/internal/pycore_ast.h' line='444' column='1' id='type-id-1079'>
<data-member access='public' layout-offset-in-bits='0'>
- <var-decl name='left' type-id='type-id-610' visibility='default' filepath='./Include/internal/pycore_ast.h' line='445' column='1'/>
+ <var-decl name='left' type-id='type-id-609' visibility='default' filepath='./Include/internal/pycore_ast.h' line='445' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='64'>
- <var-decl name='ops' type-id='type-id-681' visibility='default' filepath='./Include/internal/pycore_ast.h' line='446' column='1'/>
+ <var-decl name='ops' type-id='type-id-680' visibility='default' filepath='./Include/internal/pycore_ast.h' line='446' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='128'>
- <var-decl name='comparators' type-id='type-id-611' visibility='default' filepath='./Include/internal/pycore_ast.h' line='447' column='1'/>
+ <var-decl name='comparators' type-id='type-id-610' visibility='default' filepath='./Include/internal/pycore_ast.h' line='447' column='1'/>
</data-member>
</class-decl>
- <class-decl name='__anonymous_struct__17' size-in-bits='192' is-struct='yes' is-anonymous='yes' visibility='default' filepath='./Include/internal/pycore_ast.h' line='450' column='1' id='type-id-1081'>
+ <class-decl name='__anonymous_struct__17' size-in-bits='192' is-struct='yes' is-anonymous='yes' visibility='default' filepath='./Include/internal/pycore_ast.h' line='450' column='1' id='type-id-1080'>
<data-member access='public' layout-offset-in-bits='0'>
- <var-decl name='func' type-id='type-id-610' visibility='default' filepath='./Include/internal/pycore_ast.h' line='451' column='1'/>
+ <var-decl name='func' type-id='type-id-609' visibility='default' filepath='./Include/internal/pycore_ast.h' line='451' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='64'>
- <var-decl name='args' type-id='type-id-611' visibility='default' filepath='./Include/internal/pycore_ast.h' line='452' column='1'/>
+ <var-decl name='args' type-id='type-id-610' visibility='default' filepath='./Include/internal/pycore_ast.h' line='452' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='128'>
- <var-decl name='keywords' type-id='type-id-637' visibility='default' filepath='./Include/internal/pycore_ast.h' line='453' column='1'/>
+ <var-decl name='keywords' type-id='type-id-636' visibility='default' filepath='./Include/internal/pycore_ast.h' line='453' column='1'/>
</data-member>
</class-decl>
- <class-decl name='__anonymous_struct__18' size-in-bits='192' is-struct='yes' is-anonymous='yes' visibility='default' filepath='./Include/internal/pycore_ast.h' line='456' column='1' id='type-id-1082'>
+ <class-decl name='__anonymous_struct__18' size-in-bits='192' is-struct='yes' is-anonymous='yes' visibility='default' filepath='./Include/internal/pycore_ast.h' line='456' column='1' id='type-id-1081'>
<data-member access='public' layout-offset-in-bits='0'>
- <var-decl name='value' type-id='type-id-610' visibility='default' filepath='./Include/internal/pycore_ast.h' line='457' column='1'/>
+ <var-decl name='value' type-id='type-id-609' visibility='default' filepath='./Include/internal/pycore_ast.h' line='457' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='64'>
<var-decl name='conversion' type-id='type-id-5' visibility='default' filepath='./Include/internal/pycore_ast.h' line='458' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='128'>
- <var-decl name='format_spec' type-id='type-id-610' visibility='default' filepath='./Include/internal/pycore_ast.h' line='459' column='1'/>
+ <var-decl name='format_spec' type-id='type-id-609' visibility='default' filepath='./Include/internal/pycore_ast.h' line='459' column='1'/>
</data-member>
</class-decl>
- <class-decl name='__anonymous_struct__19' size-in-bits='64' is-struct='yes' is-anonymous='yes' visibility='default' filepath='./Include/internal/pycore_ast.h' line='462' column='1' id='type-id-1083'>
+ <class-decl name='__anonymous_struct__19' size-in-bits='64' is-struct='yes' is-anonymous='yes' visibility='default' filepath='./Include/internal/pycore_ast.h' line='462' column='1' id='type-id-1082'>
<data-member access='public' layout-offset-in-bits='0'>
- <var-decl name='values' type-id='type-id-611' visibility='default' filepath='./Include/internal/pycore_ast.h' line='463' column='1'/>
+ <var-decl name='values' type-id='type-id-610' visibility='default' filepath='./Include/internal/pycore_ast.h' line='463' column='1'/>
</data-member>
</class-decl>
- <class-decl name='__anonymous_struct__20' size-in-bits='128' is-struct='yes' is-anonymous='yes' visibility='default' filepath='./Include/internal/pycore_ast.h' line='466' column='1' id='type-id-1084'>
+ <class-decl name='__anonymous_struct__20' size-in-bits='128' is-struct='yes' is-anonymous='yes' visibility='default' filepath='./Include/internal/pycore_ast.h' line='466' column='1' id='type-id-1083'>
<data-member access='public' layout-offset-in-bits='0'>
- <var-decl name='value' type-id='type-id-660' visibility='default' filepath='./Include/internal/pycore_ast.h' line='467' column='1'/>
+ <var-decl name='value' type-id='type-id-659' visibility='default' filepath='./Include/internal/pycore_ast.h' line='467' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='64'>
- <var-decl name='kind' type-id='type-id-635' visibility='default' filepath='./Include/internal/pycore_ast.h' line='468' column='1'/>
+ <var-decl name='kind' type-id='type-id-634' visibility='default' filepath='./Include/internal/pycore_ast.h' line='468' column='1'/>
</data-member>
</class-decl>
- <class-decl name='__anonymous_struct__21' size-in-bits='192' is-struct='yes' is-anonymous='yes' visibility='default' filepath='./Include/internal/pycore_ast.h' line='471' column='1' id='type-id-1085'>
+ <class-decl name='__anonymous_struct__21' size-in-bits='192' is-struct='yes' is-anonymous='yes' visibility='default' filepath='./Include/internal/pycore_ast.h' line='471' column='1' id='type-id-1084'>
<data-member access='public' layout-offset-in-bits='0'>
- <var-decl name='value' type-id='type-id-610' visibility='default' filepath='./Include/internal/pycore_ast.h' line='472' column='1'/>
+ <var-decl name='value' type-id='type-id-609' visibility='default' filepath='./Include/internal/pycore_ast.h' line='472' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='64'>
- <var-decl name='attr' type-id='type-id-633' visibility='default' filepath='./Include/internal/pycore_ast.h' line='473' column='1'/>
+ <var-decl name='attr' type-id='type-id-632' visibility='default' filepath='./Include/internal/pycore_ast.h' line='473' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='128'>
- <var-decl name='ctx' type-id='type-id-683' visibility='default' filepath='./Include/internal/pycore_ast.h' line='474' column='1'/>
+ <var-decl name='ctx' type-id='type-id-682' visibility='default' filepath='./Include/internal/pycore_ast.h' line='474' column='1'/>
</data-member>
</class-decl>
- <class-decl name='__anonymous_struct__22' size-in-bits='192' is-struct='yes' is-anonymous='yes' visibility='default' filepath='./Include/internal/pycore_ast.h' line='477' column='1' id='type-id-1086'>
+ <class-decl name='__anonymous_struct__22' size-in-bits='192' is-struct='yes' is-anonymous='yes' visibility='default' filepath='./Include/internal/pycore_ast.h' line='477' column='1' id='type-id-1085'>
<data-member access='public' layout-offset-in-bits='0'>
- <var-decl name='value' type-id='type-id-610' visibility='default' filepath='./Include/internal/pycore_ast.h' line='478' column='1'/>
+ <var-decl name='value' type-id='type-id-609' visibility='default' filepath='./Include/internal/pycore_ast.h' line='478' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='64'>
- <var-decl name='slice' type-id='type-id-610' visibility='default' filepath='./Include/internal/pycore_ast.h' line='479' column='1'/>
+ <var-decl name='slice' type-id='type-id-609' visibility='default' filepath='./Include/internal/pycore_ast.h' line='479' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='128'>
- <var-decl name='ctx' type-id='type-id-683' visibility='default' filepath='./Include/internal/pycore_ast.h' line='480' column='1'/>
+ <var-decl name='ctx' type-id='type-id-682' visibility='default' filepath='./Include/internal/pycore_ast.h' line='480' column='1'/>
</data-member>
</class-decl>
- <class-decl name='__anonymous_struct__23' size-in-bits='128' is-struct='yes' is-anonymous='yes' visibility='default' filepath='./Include/internal/pycore_ast.h' line='483' column='1' id='type-id-1087'>
+ <class-decl name='__anonymous_struct__23' size-in-bits='128' is-struct='yes' is-anonymous='yes' visibility='default' filepath='./Include/internal/pycore_ast.h' line='483' column='1' id='type-id-1086'>
<data-member access='public' layout-offset-in-bits='0'>
- <var-decl name='value' type-id='type-id-610' visibility='default' filepath='./Include/internal/pycore_ast.h' line='484' column='1'/>
+ <var-decl name='value' type-id='type-id-609' visibility='default' filepath='./Include/internal/pycore_ast.h' line='484' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='64'>
- <var-decl name='ctx' type-id='type-id-683' visibility='default' filepath='./Include/internal/pycore_ast.h' line='485' column='1'/>
+ <var-decl name='ctx' type-id='type-id-682' visibility='default' filepath='./Include/internal/pycore_ast.h' line='485' column='1'/>
</data-member>
</class-decl>
- <class-decl name='__anonymous_struct__24' size-in-bits='128' is-struct='yes' is-anonymous='yes' visibility='default' filepath='./Include/internal/pycore_ast.h' line='488' column='1' id='type-id-1088'>
+ <class-decl name='__anonymous_struct__24' size-in-bits='128' is-struct='yes' is-anonymous='yes' visibility='default' filepath='./Include/internal/pycore_ast.h' line='488' column='1' id='type-id-1087'>
<data-member access='public' layout-offset-in-bits='0'>
- <var-decl name='id' type-id='type-id-633' visibility='default' filepath='./Include/internal/pycore_ast.h' line='489' column='1'/>
+ <var-decl name='id' type-id='type-id-632' visibility='default' filepath='./Include/internal/pycore_ast.h' line='489' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='64'>
- <var-decl name='ctx' type-id='type-id-683' visibility='default' filepath='./Include/internal/pycore_ast.h' line='490' column='1'/>
+ <var-decl name='ctx' type-id='type-id-682' visibility='default' filepath='./Include/internal/pycore_ast.h' line='490' column='1'/>
</data-member>
</class-decl>
- <class-decl name='__anonymous_struct__25' size-in-bits='128' is-struct='yes' is-anonymous='yes' visibility='default' filepath='./Include/internal/pycore_ast.h' line='493' column='1' id='type-id-1089'>
+ <class-decl name='__anonymous_struct__25' size-in-bits='128' is-struct='yes' is-anonymous='yes' visibility='default' filepath='./Include/internal/pycore_ast.h' line='493' column='1' id='type-id-1088'>
<data-member access='public' layout-offset-in-bits='0'>
- <var-decl name='elts' type-id='type-id-611' visibility='default' filepath='./Include/internal/pycore_ast.h' line='494' column='1'/>
+ <var-decl name='elts' type-id='type-id-610' visibility='default' filepath='./Include/internal/pycore_ast.h' line='494' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='64'>
- <var-decl name='ctx' type-id='type-id-683' visibility='default' filepath='./Include/internal/pycore_ast.h' line='495' column='1'/>
+ <var-decl name='ctx' type-id='type-id-682' visibility='default' filepath='./Include/internal/pycore_ast.h' line='495' column='1'/>
</data-member>
</class-decl>
- <class-decl name='__anonymous_struct__27' size-in-bits='192' is-struct='yes' is-anonymous='yes' visibility='default' filepath='./Include/internal/pycore_ast.h' line='503' column='1' id='type-id-1090'>
+ <class-decl name='__anonymous_struct__27' size-in-bits='192' is-struct='yes' is-anonymous='yes' visibility='default' filepath='./Include/internal/pycore_ast.h' line='503' column='1' id='type-id-1089'>
<data-member access='public' layout-offset-in-bits='0'>
- <var-decl name='lower' type-id='type-id-610' visibility='default' filepath='./Include/internal/pycore_ast.h' line='504' column='1'/>
+ <var-decl name='lower' type-id='type-id-609' visibility='default' filepath='./Include/internal/pycore_ast.h' line='504' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='64'>
- <var-decl name='upper' type-id='type-id-610' visibility='default' filepath='./Include/internal/pycore_ast.h' line='505' column='1'/>
+ <var-decl name='upper' type-id='type-id-609' visibility='default' filepath='./Include/internal/pycore_ast.h' line='505' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='128'>
- <var-decl name='step' type-id='type-id-610' visibility='default' filepath='./Include/internal/pycore_ast.h' line='506' column='1'/>
+ <var-decl name='step' type-id='type-id-609' visibility='default' filepath='./Include/internal/pycore_ast.h' line='506' column='1'/>
</data-member>
</class-decl>
- <class-decl name='_comprehension' size-in-bits='256' is-struct='yes' visibility='default' filepath='./Include/internal/pycore_ast.h' line='516' column='1' id='type-id-1091'>
+ <class-decl name='_comprehension' size-in-bits='256' is-struct='yes' visibility='default' filepath='./Include/internal/pycore_ast.h' line='516' column='1' id='type-id-1090'>
<data-member access='public' layout-offset-in-bits='0'>
- <var-decl name='target' type-id='type-id-610' visibility='default' filepath='./Include/internal/pycore_ast.h' line='517' column='1'/>
+ <var-decl name='target' type-id='type-id-609' visibility='default' filepath='./Include/internal/pycore_ast.h' line='517' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='64'>
- <var-decl name='iter' type-id='type-id-610' visibility='default' filepath='./Include/internal/pycore_ast.h' line='518' column='1'/>
+ <var-decl name='iter' type-id='type-id-609' visibility='default' filepath='./Include/internal/pycore_ast.h' line='518' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='128'>
- <var-decl name='ifs' type-id='type-id-611' visibility='default' filepath='./Include/internal/pycore_ast.h' line='519' column='1'/>
+ <var-decl name='ifs' type-id='type-id-610' visibility='default' filepath='./Include/internal/pycore_ast.h' line='519' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='192'>
<var-decl name='is_async' type-id='type-id-5' visibility='default' filepath='./Include/internal/pycore_ast.h' line='520' column='1'/>
</data-member>
</class-decl>
- <class-decl name='_arguments' size-in-bits='448' is-struct='yes' visibility='default' filepath='./Include/internal/pycore_ast.h' line='540' column='1' id='type-id-1092'>
+ <class-decl name='_arguments' size-in-bits='448' is-struct='yes' visibility='default' filepath='./Include/internal/pycore_ast.h' line='540' column='1' id='type-id-1091'>
<data-member access='public' layout-offset-in-bits='0'>
- <var-decl name='posonlyargs' type-id='type-id-682' visibility='default' filepath='./Include/internal/pycore_ast.h' line='541' column='1'/>
+ <var-decl name='posonlyargs' type-id='type-id-681' visibility='default' filepath='./Include/internal/pycore_ast.h' line='541' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='64'>
- <var-decl name='args' type-id='type-id-682' visibility='default' filepath='./Include/internal/pycore_ast.h' line='542' column='1'/>
+ <var-decl name='args' type-id='type-id-681' visibility='default' filepath='./Include/internal/pycore_ast.h' line='542' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='128'>
- <var-decl name='vararg' type-id='type-id-684' visibility='default' filepath='./Include/internal/pycore_ast.h' line='543' column='1'/>
+ <var-decl name='vararg' type-id='type-id-683' visibility='default' filepath='./Include/internal/pycore_ast.h' line='543' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='192'>
- <var-decl name='kwonlyargs' type-id='type-id-682' visibility='default' filepath='./Include/internal/pycore_ast.h' line='544' column='1'/>
+ <var-decl name='kwonlyargs' type-id='type-id-681' visibility='default' filepath='./Include/internal/pycore_ast.h' line='544' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='256'>
- <var-decl name='kw_defaults' type-id='type-id-611' visibility='default' filepath='./Include/internal/pycore_ast.h' line='545' column='1'/>
+ <var-decl name='kw_defaults' type-id='type-id-610' visibility='default' filepath='./Include/internal/pycore_ast.h' line='545' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='320'>
- <var-decl name='kwarg' type-id='type-id-684' visibility='default' filepath='./Include/internal/pycore_ast.h' line='546' column='1'/>
+ <var-decl name='kwarg' type-id='type-id-683' visibility='default' filepath='./Include/internal/pycore_ast.h' line='546' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='384'>
- <var-decl name='defaults' type-id='type-id-611' visibility='default' filepath='./Include/internal/pycore_ast.h' line='547' column='1'/>
+ <var-decl name='defaults' type-id='type-id-610' visibility='default' filepath='./Include/internal/pycore_ast.h' line='547' column='1'/>
</data-member>
</class-decl>
- <class-decl name='_arg' size-in-bits='320' is-struct='yes' visibility='default' filepath='./Include/internal/pycore_ast.h' line='550' column='1' id='type-id-1093'>
+ <class-decl name='_arg' size-in-bits='320' is-struct='yes' visibility='default' filepath='./Include/internal/pycore_ast.h' line='550' column='1' id='type-id-1092'>
<data-member access='public' layout-offset-in-bits='0'>
- <var-decl name='arg' type-id='type-id-633' visibility='default' filepath='./Include/internal/pycore_ast.h' line='551' column='1'/>
+ <var-decl name='arg' type-id='type-id-632' visibility='default' filepath='./Include/internal/pycore_ast.h' line='551' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='64'>
- <var-decl name='annotation' type-id='type-id-610' visibility='default' filepath='./Include/internal/pycore_ast.h' line='552' column='1'/>
+ <var-decl name='annotation' type-id='type-id-609' visibility='default' filepath='./Include/internal/pycore_ast.h' line='552' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='128'>
- <var-decl name='type_comment' type-id='type-id-635' visibility='default' filepath='./Include/internal/pycore_ast.h' line='553' column='1'/>
+ <var-decl name='type_comment' type-id='type-id-634' visibility='default' filepath='./Include/internal/pycore_ast.h' line='553' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='192'>
<var-decl name='lineno' type-id='type-id-5' visibility='default' filepath='./Include/internal/pycore_ast.h' line='554' column='1'/>
@@ -15612,12 +15600,12 @@
<var-decl name='end_col_offset' type-id='type-id-5' visibility='default' filepath='./Include/internal/pycore_ast.h' line='557' column='1'/>
</data-member>
</class-decl>
- <class-decl name='_keyword' size-in-bits='256' is-struct='yes' visibility='default' filepath='./Include/internal/pycore_ast.h' line='560' column='1' id='type-id-1094'>
+ <class-decl name='_keyword' size-in-bits='256' is-struct='yes' visibility='default' filepath='./Include/internal/pycore_ast.h' line='560' column='1' id='type-id-1093'>
<data-member access='public' layout-offset-in-bits='0'>
- <var-decl name='arg' type-id='type-id-633' visibility='default' filepath='./Include/internal/pycore_ast.h' line='561' column='1'/>
+ <var-decl name='arg' type-id='type-id-632' visibility='default' filepath='./Include/internal/pycore_ast.h' line='561' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='64'>
- <var-decl name='value' type-id='type-id-610' visibility='default' filepath='./Include/internal/pycore_ast.h' line='562' column='1'/>
+ <var-decl name='value' type-id='type-id-609' visibility='default' filepath='./Include/internal/pycore_ast.h' line='562' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='128'>
<var-decl name='lineno' type-id='type-id-5' visibility='default' filepath='./Include/internal/pycore_ast.h' line='563' column='1'/>
@@ -15632,9 +15620,9 @@
<var-decl name='end_col_offset' type-id='type-id-5' visibility='default' filepath='./Include/internal/pycore_ast.h' line='566' column='1'/>
</data-member>
</class-decl>
- <class-decl name='ast_state' size-in-bits='15616' is-struct='yes' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='16' column='1' id='type-id-1095'>
+ <class-decl name='ast_state' size-in-bits='15616' is-struct='yes' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='16' column='1' id='type-id-1094'>
<data-member access='public' layout-offset-in-bits='0'>
- <var-decl name='once' type-id='type-id-963' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='17' column='1'/>
+ <var-decl name='once' type-id='type-id-962' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='17' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='32'>
<var-decl name='finalized' type-id='type-id-5' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='18' column='1'/>
@@ -16369,19 +16357,19 @@
<var-decl name='withitem_type' type-id='type-id-4' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='261' column='1'/>
</data-member>
</class-decl>
- <typedef-decl name='atexit_callbackfunc' type-id='type-id-231' filepath='./Include/internal/pycore_atexit.h' line='18' column='1' id='type-id-804'/>
- <class-decl name='_atexit_runtime_state' size-in-bits='2176' is-struct='yes' visibility='default' filepath='./Include/internal/pycore_atexit.h' line='20' column='1' id='type-id-1096'>
+ <typedef-decl name='atexit_callbackfunc' type-id='type-id-231' filepath='./Include/internal/pycore_atexit.h' line='18' column='1' id='type-id-803'/>
+ <class-decl name='_atexit_runtime_state' size-in-bits='2176' is-struct='yes' visibility='default' filepath='./Include/internal/pycore_atexit.h' line='20' column='1' id='type-id-1095'>
<data-member access='public' layout-offset-in-bits='0'>
- <var-decl name='mutex' type-id='type-id-502' visibility='default' filepath='./Include/internal/pycore_atexit.h' line='21' column='1'/>
+ <var-decl name='mutex' type-id='type-id-693' visibility='default' filepath='./Include/internal/pycore_atexit.h' line='21' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='64'>
- <var-decl name='callbacks' type-id='type-id-805' visibility='default' filepath='./Include/internal/pycore_atexit.h' line='23' column='1'/>
+ <var-decl name='callbacks' type-id='type-id-804' visibility='default' filepath='./Include/internal/pycore_atexit.h' line='23' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='2112'>
<var-decl name='ncallbacks' type-id='type-id-5' visibility='default' filepath='./Include/internal/pycore_atexit.h' line='24' column='1'/>
</data-member>
</class-decl>
- &