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/longobject.c b/Objects/longobject.c index 74037be..475b9bd 100644 --- a/Objects/longobject.c +++ b/Objects/longobject.c
@@ -5869,7 +5869,7 @@ } void -PyLong_Fini(void) +_PyLong_Fini(void) { /* Integers are currently statically allocated. Py_DECREF is not needed, but Python must forget about the reference or multiple