diff options
author | Stefan Krah <skrah@bytereef.org> | 2015-01-29 13:29:51 (GMT) |
---|---|---|
committer | Stefan Krah <skrah@bytereef.org> | 2015-01-29 13:29:51 (GMT) |
commit | f5324d7074d17b026ecd5ef7d7fc16f5e71b0db2 (patch) | |
tree | 0b5d602bf7d5372ed54df211b3ebc31b21f59653 /Doc/whatsnew | |
parent | 6d14405fdb9357b689d76dcfd230018c0ce8c3a8 (diff) | |
parent | fa5d6a5ff3ca247d9c2eaf51853ff39c98c09f4a (diff) | |
download | cpython-f5324d7074d17b026ecd5ef7d7fc16f5e71b0db2.zip cpython-f5324d7074d17b026ecd5ef7d7fc16f5e71b0db2.tar.gz cpython-f5324d7074d17b026ecd5ef7d7fc16f5e71b0db2.tar.bz2 |
Closes #22668: Merge from 3.4.
Diffstat (limited to 'Doc/whatsnew')
-rw-r--r-- | Doc/whatsnew/3.5.rst | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/Doc/whatsnew/3.5.rst b/Doc/whatsnew/3.5.rst index 98e421d..c309aa8 100644 --- a/Doc/whatsnew/3.5.rst +++ b/Doc/whatsnew/3.5.rst @@ -485,6 +485,12 @@ Changes in the Python API Changes in the C API -------------------- +* The undocumented :c:member:`~PyMemoryViewObject.format` member of the + (non-public) :c:type:`PyMemoryViewObject` structure has been removed. + + All extensions relying on the relevant parts in ``memoryobject.h`` + must be rebuilt. + * The :c:type:`PyMemAllocator` structure was renamed to :c:type:`PyMemAllocatorEx` and a new ``calloc`` field was added. |