diff options
author | Nick Coghlan <ncoghlan@gmail.com> | 2019-07-28 11:40:47 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-07-28 11:40:47 (GMT) |
commit | 17a058ed6ffa7f56c0920d15d214ad080e7eef86 (patch) | |
tree | 280496d5725569df0fa71986eb1326a729aa4f74 /Doc/c-api/memory.rst | |
parent | 6b5f1b496f0b20144592b640b9c975df43a29eb0 (diff) | |
download | cpython-17a058ed6ffa7f56c0920d15d214ad080e7eef86.zip cpython-17a058ed6ffa7f56c0920d15d214ad080e7eef86.tar.gz cpython-17a058ed6ffa7f56c0920d15d214ad080e7eef86.tar.bz2 |
Remove trailing .0 from version changed note (GH-14987)
Diffstat (limited to 'Doc/c-api/memory.rst')
-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()`` |