diff options
author | Eddie Elizondo <eduardo.elizondorueda@gmail.com> | 2018-11-13 12:09:31 (GMT) |
---|---|---|
committer | Petr Viktorin <encukou@gmail.com> | 2018-11-13 12:09:31 (GMT) |
commit | 474eedfb3d1b6fecbd749f36bf4a987cf4a00b44 (patch) | |
tree | 755905c5417d597c1a148fb719bbe83c10013649 /Misc | |
parent | 1a6be91e6fd65ce9cb88cbbbb193db7e92ec6076 (diff) | |
download | cpython-474eedfb3d1b6fecbd749f36bf4a987cf4a00b44.zip cpython-474eedfb3d1b6fecbd749f36bf4a987cf4a00b44.tar.gz cpython-474eedfb3d1b6fecbd749f36bf4a987cf4a00b44.tar.bz2 |
bpo-34784: Fix PyStructSequence_NewType with heap-allocated StructSequence (GH-9665)
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Core and Builtins/2018-10-02-09-10-47.bpo-34784.07hdgD.rst | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Core and Builtins/2018-10-02-09-10-47.bpo-34784.07hdgD.rst b/Misc/NEWS.d/next/Core and Builtins/2018-10-02-09-10-47.bpo-34784.07hdgD.rst new file mode 100644 index 0000000..296fc14 --- /dev/null +++ b/Misc/NEWS.d/next/Core and Builtins/2018-10-02-09-10-47.bpo-34784.07hdgD.rst @@ -0,0 +1,2 @@ +Fix the implementation of PyStructSequence_NewType in order to create heap +allocated StructSequences. |