diff options
author | Eric Snow <ericsnowcurrently@gmail.com> | 2023-06-02 22:52:33 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-06-02 22:52:33 (GMT) |
commit | e6373c0d8b59512aa7f0dea7f3fb162b6ed10fa4 (patch) | |
tree | db75e676b44057aa1f7eed514e0395d832615fb7 /Include/internal/pycore_pymem.h | |
parent | 9ad199ba36791711f596393ca9a20dbf118ef858 (diff) | |
download | cpython-e6373c0d8b59512aa7f0dea7f3fb162b6ed10fa4.zip cpython-e6373c0d8b59512aa7f0dea7f3fb162b6ed10fa4.tar.gz cpython-e6373c0d8b59512aa7f0dea7f3fb162b6ed10fa4.tar.bz2 |
gh-101524: Only Use Public C-API in the _xxsubinterpreters Module (gh-105258)
The _xxsubinterpreters module was meant to only use public API. Some internal C-API usage snuck in over the last few years (e.g. gh-28969). This fixes that.
Diffstat (limited to 'Include/internal/pycore_pymem.h')
-rw-r--r-- | Include/internal/pycore_pymem.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Include/internal/pycore_pymem.h b/Include/internal/pycore_pymem.h index 4cc953d..a555f37 100644 --- a/Include/internal/pycore_pymem.h +++ b/Include/internal/pycore_pymem.h @@ -94,4 +94,4 @@ PyAPI_FUNC(int) _PyMem_SetupAllocators(PyMemAllocatorName allocator); #ifdef __cplusplus } #endif -#endif // !Py_INTERNAL_PYMEM_H +#endif /* !Py_INTERNAL_PYMEM_H */ |