diff options
author | Hai Shi <shihai1992@gmail.com> | 2020-11-06 16:04:47 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-11-06 16:04:47 (GMT) |
commit | 88c2cfd9ffbcfc43fd1364f2984852a819547d43 (patch) | |
tree | 85571ab2d826b5eed1e084c9b973e3f9016fecd9 /Doc/whatsnew | |
parent | 803187796f06bdc47ae74ce3d28c443e8cc2a27f (diff) | |
download | cpython-88c2cfd9ffbcfc43fd1364f2984852a819547d43.zip cpython-88c2cfd9ffbcfc43fd1364f2984852a819547d43.tar.gz cpython-88c2cfd9ffbcfc43fd1364f2984852a819547d43.tar.bz2 |
bpo-41832: PyType_FromModuleAndSpec() now accepts NULL tp_doc (GH-23123)
Diffstat (limited to 'Doc/whatsnew')
-rw-r--r-- | Doc/whatsnew/3.10.rst | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Doc/whatsnew/3.10.rst b/Doc/whatsnew/3.10.rst index 0ed7084..1e6c7c4 100644 --- a/Doc/whatsnew/3.10.rst +++ b/Doc/whatsnew/3.10.rst @@ -401,6 +401,10 @@ New Features reference count of an object and return the object. (Contributed by Victor Stinner in :issue:`42262`.) +* The :c:func:`PyType_FromModuleAndSpec` function now accepts NULL ``tp_doc`` + slot. + (Contributed by Hai Shi in :issue:`41832`.) + Porting to Python 3.10 ---------------------- |