diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2019-11-16 16:55:29 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-11-16 16:55:29 (GMT) |
commit | bd44a7ead9f7336d7bb45f186b2b6ca0300154f7 (patch) | |
tree | f53b1af72f9a828420c251c5ecc27e20d66eaffe /Misc/NEWS.d | |
parent | 5fd5cb8d85fab3393dd76c7f3de1cdeb8ecf7203 (diff) | |
download | cpython-bd44a7ead9f7336d7bb45f186b2b6ca0300154f7.zip cpython-bd44a7ead9f7336d7bb45f186b2b6ca0300154f7.tar.gz cpython-bd44a7ead9f7336d7bb45f186b2b6ca0300154f7.tar.bz2 |
bpo-38650: Constify PyStructSequence_UnnamedField. (GH-17005)
Make it a constant and referring to a constant string.
Diffstat (limited to 'Misc/NEWS.d')
-rw-r--r-- | Misc/NEWS.d/next/C API/2019-10-30-22-03-03.bpo-38650.0pi8zt.rst | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/C API/2019-10-30-22-03-03.bpo-38650.0pi8zt.rst b/Misc/NEWS.d/next/C API/2019-10-30-22-03-03.bpo-38650.0pi8zt.rst new file mode 100644 index 0000000..55b9c13 --- /dev/null +++ b/Misc/NEWS.d/next/C API/2019-10-30-22-03-03.bpo-38650.0pi8zt.rst @@ -0,0 +1,2 @@ +The global variable :c:data:`PyStructSequence_UnnamedField` is now a +constant and refers to a constant string. |