diff options
author | Pablo Galindo <Pablogsal@gmail.com> | 2021-05-03 14:50:24 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-05-03 14:50:24 (GMT) |
commit | c2931d31f8ba7cf10044de276018c713ffc73592 (patch) | |
tree | 6224fcc17abe3498f747e3110f9c3f99a8cb6597 /Objects | |
parent | 440c0257262fec6f519bb81e49f1a4f341aeed66 (diff) | |
download | cpython-c2931d31f8ba7cf10044de276018c713ffc73592.zip cpython-c2931d31f8ba7cf10044de276018c713ffc73592.tar.gz cpython-c2931d31f8ba7cf10044de276018c713ffc73592.tar.bz2 |
bpo-43916: Move the _PyStructSequence_InitType function to the internal API (GH-25854)
Diffstat (limited to 'Objects')
-rw-r--r-- | Objects/structseq.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Objects/structseq.c b/Objects/structseq.c index bf59f47..73795b6 100644 --- a/Objects/structseq.c +++ b/Objects/structseq.c @@ -11,6 +11,7 @@ #include "pycore_tuple.h" // _PyTuple_FromArray() #include "pycore_object.h" // _PyObject_GC_TRACK() #include "structmember.h" // PyMemberDef +#include "pycore_structseq.h" // PyStructSequence_InitType() static const char visible_length_key[] = "n_sequence_fields"; static const char real_length_key[] = "n_fields"; |