mirror of
https://github.com/python/cpython.git
synced 2025-07-07 19:35:27 +00:00
Make PyXXX_Fini() functions private (GH-15531)
For example, rename PyTuple_Fini() to _PyTuple_Fini(). These functions are only declared in the internal C API.
This commit is contained in:
parent
d3cc189b17
commit
bed4817d52
14 changed files with 38 additions and 36 deletions
|
@ -319,7 +319,7 @@ PyCFunction_ClearFreeList(void)
|
|||
}
|
||||
|
||||
void
|
||||
PyCFunction_Fini(void)
|
||||
_PyCFunction_Fini(void)
|
||||
{
|
||||
(void)PyCFunction_ClearFreeList();
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue