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/floatobject.c b/Objects/floatobject.c index 689e929..6643ff3 100644 --- a/Objects/floatobject.c +++ b/Objects/floatobject.c
@@ -2031,7 +2031,7 @@ } void -PyFloat_Fini(void) +_PyFloat_Fini(void) { (void)PyFloat_ClearFreeList(); }