mirror of
https://github.com/python/cpython.git
synced 2025-11-25 04:34:37 +00:00
Issue #18772: fix the gdb plugin after the set implementation changes
This commit is contained in:
parent
f5e30d8b54
commit
9d95254bb7
5 changed files with 26 additions and 31 deletions
|
|
@ -61,6 +61,10 @@ struct _setobject {
|
|||
PyAPI_DATA(PyTypeObject) PySet_Type;
|
||||
PyAPI_DATA(PyTypeObject) PyFrozenSet_Type;
|
||||
PyAPI_DATA(PyTypeObject) PySetIter_Type;
|
||||
#ifndef Py_LIMITED_API
|
||||
PyAPI_DATA(PyObject *) _PySet_Dummy;
|
||||
#endif
|
||||
|
||||
|
||||
/* Invariants for frozensets:
|
||||
* data is immutable.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue