diff options
author | R David Murray <rdmurray@bitdance.com> | 2015-04-14 20:42:49 (GMT) |
---|---|---|
committer | R David Murray <rdmurray@bitdance.com> | 2015-04-14 20:42:49 (GMT) |
commit | f3cae7988390646d35623894adbcc6f5650ea761 (patch) | |
tree | 3cdebb3ca8370c4205be3219894f68ab30a904db /Doc/c-api | |
parent | 4e72cceb628010b5f30dce7a2883cda92ed61393 (diff) | |
parent | 5be7f1513d3e48ec03b0b95aa33f25991f12308e (diff) | |
download | cpython-f3cae7988390646d35623894adbcc6f5650ea761.zip cpython-f3cae7988390646d35623894adbcc6f5650ea761.tar.gz cpython-f3cae7988390646d35623894adbcc6f5650ea761.tar.bz2 |
Merge: #23957: fix typo.
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 5d78f38..7339006 100644 --- a/Doc/c-api/memory.rst +++ b/Doc/c-api/memory.rst @@ -302,7 +302,7 @@ Customize Memory Allocators :c:func:`PyObject_Free` Newly allocated memory is filled with the byte ``0xCB``, freed memory is - filled with the byte ``0xDB``. Additionnal checks: + filled with the byte ``0xDB``. Additional checks: - detect API violations, ex: :c:func:`PyObject_Free` called on a buffer allocated by :c:func:`PyMem_Malloc` |