]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Fix a grammatical error in `pycore_pymem.h` (#112993)
authorJoseph Pearson <74079531+JoeyPearson822@users.noreply.github.com>
Fri, 12 Jan 2024 22:25:52 +0000 (17:25 -0500)
committerGitHub <noreply@github.com>
Fri, 12 Jan 2024 22:25:52 +0000 (22:25 +0000)
Include/internal/pycore_pymem.h

index 8631ca34a5e61600a52f007b6a92298039c4e1f3..c49742e177a13016a34020872c34cbed4ec738ee 100644 (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