Fix a grammatical error in pycore_pymem.h (#112993)

This commit is contained in:
Joseph Pearson 2024-01-12 17:25:52 -05:00 committed by GitHub
parent 794983cd61
commit 9a71750a29
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -64,7 +64,7 @@ extern int _PyMem_SetDefaultAllocator(
- PYMEM_FORBIDDENBYTE: untouchable bytes at each end of a block
Byte patterns 0xCB, 0xDB and 0xFB have been replaced with 0xCD, 0xDD and
0xFD to use the same values than Windows CRT debug malloc() and free().
0xFD to use the same values as Windows CRT debug malloc() and free().
If modified, _PyMem_IsPtrFreed() should be updated as well. */
#define PYMEM_CLEANBYTE 0xCD
#define PYMEM_DEADBYTE 0xDD