diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2019-07-28 11:48:26 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-07-28 11:48:26 (GMT) |
commit | 69372eea08509b4209977f5643db02d6b8d10ca3 (patch) | |
tree | 5b637ccdbd9744f470bb5ddb06b5968247b1eebd /Doc/c-api | |
parent | 76821bab9cb77fa7f847e66f8b2309ca30546c7f (diff) | |
download | cpython-69372eea08509b4209977f5643db02d6b8d10ca3.zip cpython-69372eea08509b4209977f5643db02d6b8d10ca3.tar.gz cpython-69372eea08509b4209977f5643db02d6b8d10ca3.tar.bz2 |
Remove trailing .0 from version changed note (GH-14987)
(cherry picked from commit 17a058ed6ffa7f56c0920d15d214ad080e7eef86)
Co-authored-by: Nick Coghlan <ncoghlan@gmail.com>
Diffstat (limited to 'Doc/c-api')
-rw-r--r-- | Doc/c-api/memory.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/c-api/memory.rst b/Doc/c-api/memory.rst index f97ae45..d3c8b30 100644 --- a/Doc/c-api/memory.rst +++ b/Doc/c-api/memory.rst @@ -472,7 +472,7 @@ Customize Memory Allocators if the GIL is held when functions of :c:data:`PYMEM_DOMAIN_OBJ` and :c:data:`PYMEM_DOMAIN_MEM` domains are called. - .. versionchanged:: 3.8.0 + .. versionchanged:: 3.8 Byte patterns ``0xCB`` (``CLEANBYTE``), ``0xDB`` (``DEADBYTE``) and ``0xFB`` (``FORBIDDENBYTE``) have been replaced with ``0xCD``, ``0xDD`` and ``0xFD`` to use the same values than Windows CRT debug ``malloc()`` |