mirror of
https://github.com/python/cpython.git
synced 2025-08-04 17:08:35 +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
|
@ -375,7 +375,7 @@ PyMethod_ClearFreeList(void)
|
|||
}
|
||||
|
||||
void
|
||||
PyMethod_Fini(void)
|
||||
_PyMethod_Fini(void)
|
||||
{
|
||||
(void)PyMethod_ClearFreeList();
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue