https://github.com/python/cpython/commit/9a71750a2930ebeac4080a378966aa7fdd4a9b34
commit: 9a71750a2930ebeac4080a378966aa7fdd4a9b34
branch: main
author: Joseph Pearson <[email protected]>
committer: AA-Turner <[email protected]>
date: 2024-01-12T22:25:52Z
summary:

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

files:
M Include/internal/pycore_pymem.h

diff --git a/Include/internal/pycore_pymem.h b/Include/internal/pycore_pymem.h
index 8631ca34a5e616..c49742e177a130 100644
--- a/Include/internal/pycore_pymem.h
+++ b/Include/internal/pycore_pymem.h
@@ -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

_______________________________________________
Python-checkins mailing list -- [email protected]
To unsubscribe send an email to [email protected]
https://mail.python.org/mailman3/lists/python-checkins.python.org/
Member address: [email protected]

Reply via email to