commit | bed4817d52d7b5a383b1b61269c1337b61acc493 | [log] [tgz] |
---|---|---|
author | Victor Stinner <vstinner@redhat.com> | Tue Aug 27 00:12:32 2019 +0200 |
committer | GitHub <noreply@github.com> | Tue Aug 27 00:12:32 2019 +0200 |
tree | 01f7e4deff50bacc84b2c5924e4e873f201cdc0f | |
parent | d3cc189b17c86f670198aca109b5ffa2d526d87a [diff] [blame] |
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.
diff --git a/Objects/tupleobject.c b/Objects/tupleobject.c index 79a5d55..3419baa 100644 --- a/Objects/tupleobject.c +++ b/Objects/tupleobject.c
@@ -989,7 +989,7 @@ } void -PyTuple_Fini(void) +_PyTuple_Fini(void) { #if PyTuple_MAXSAVESIZE > 0 /* empty tuples are used all over the place and applications may