From: Yury Selivanov Date: Tue, 12 May 2015 04:15:05 +0000 (-0400) Subject: doc: Briefly mention C API changes in whatsnew. X-Git-Tag: v3.5.0b1~196 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=5096088c073142e6c359b438c863a390f4fae3b8;p=python doc: Briefly mention C API changes in whatsnew. --- diff --git a/Doc/whatsnew/3.5.rst b/Doc/whatsnew/3.5.rst index 9325b9089c..8a1bd91e2c 100644 --- a/Doc/whatsnew/3.5.rst +++ b/Doc/whatsnew/3.5.rst @@ -879,3 +879,6 @@ Changes in the C API introspection, a deprecation warning now is raised for builtin type without the :attr:`__module__` attribute. Would be an AttributeError in future. (:issue:`20204`) + +* As part of PEP 492 implementation, ``tp_reserved`` slot of + ``PyTypeObject`` was replaced with ``tp_as_async`` slot.