summaryrefslogtreecommitdiff
path: root/Objects/bytesobject.c
diff options
context:
space:
mode:
authorVictor Stinner <vstinner@redhat.com>2019-08-27 00:12:32 +0200
committerGitHub <noreply@github.com>2019-08-27 00:12:32 +0200
commitbed4817d52d7b5a383b1b61269c1337b61acc493 (patch)
tree01f7e4deff50bacc84b2c5924e4e873f201cdc0f /Objects/bytesobject.c
parentd3cc189b17c86f670198aca109b5ffa2d526d87a (diff)
downloadcpython-git-bed4817d52d7b5a383b1b61269c1337b61acc493.tar.gz
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.
Diffstat (limited to 'Objects/bytesobject.c')
-rw-r--r--Objects/bytesobject.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Objects/bytesobject.c b/Objects/bytesobject.c
index c4edcca4f7..6d553304a4 100644
--- a/Objects/bytesobject.c
+++ b/Objects/bytesobject.c
@@ -3047,7 +3047,7 @@ error:
}
void
-PyBytes_Fini(void)
+_PyBytes_Fini(void)
{
int i;
for (i = 0; i < UCHAR_MAX + 1; i++)