mirror of
https://github.com/python/cpython.git
synced 2025-11-25 21:11:09 +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
|
|
@ -3047,7 +3047,7 @@ error:
|
|||
}
|
||||
|
||||
void
|
||||
PyBytes_Fini(void)
|
||||
_PyBytes_Fini(void)
|
||||
{
|
||||
int i;
|
||||
for (i = 0; i < UCHAR_MAX + 1; i++)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue