diff options
Diffstat (limited to 'Objects/clinic/structseq.c.h')
-rw-r--r-- | Objects/clinic/structseq.c.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Objects/clinic/structseq.c.h b/Objects/clinic/structseq.c.h index 0afb21ad918..9642b480fa1 100644 --- a/Objects/clinic/structseq.c.h +++ b/Objects/clinic/structseq.c.h @@ -21,9 +21,11 @@ structseq_new(PyTypeObject *type, PyObject *args, PyObject *kwargs) static struct { PyGC_Head _this_is_not_used; PyObject_VAR_HEAD + Py_hash_t ob_hash; PyObject *ob_item[NUM_KEYWORDS]; } _kwtuple = { .ob_base = PyVarObject_HEAD_INIT(&PyTuple_Type, NUM_KEYWORDS) + .ob_hash = -1, .ob_item = { &_Py_ID(sequence), &_Py_ID(dict), }, }; #undef NUM_KEYWORDS @@ -63,4 +65,4 @@ skip_optional_pos: exit: return return_value; } -/*[clinic end generated code: output=ef2406240ce0ad3f input=a9049054013a1b77]*/ +/*[clinic end generated code: output=112d59f5e98d652b input=a9049054013a1b77]*/ |