gh-107211: Rename PySymtable_Lookup() to _PySymtable_Lookup() (#107212)

Rename the internal PySymtable_Lookup() function to
_PySymtable_Lookup() and no longer export it.
This commit is contained in:
Victor Stinner 2023-07-25 02:54:09 +02:00 committed by GitHub
parent 4bbf071635
commit 2e0744955f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 4 additions and 4 deletions

View file

@ -389,7 +389,7 @@ _PySymtable_Free(struct symtable *st)
}
PySTEntryObject *
PySymtable_Lookup(struct symtable *st, void *key)
_PySymtable_Lookup(struct symtable *st, void *key)
{
PyObject *k, *v;