summaryrefslogtreecommitdiffstats
path: root/Python/symtable.c
diff options
context:
space:
mode:
authorVictor Stinner <vstinner@python.org>2023-07-25 00:54:09 (GMT)
committerGitHub <noreply@github.com>2023-07-25 00:54:09 (GMT)
commit2e0744955f1c213a55738de848a9d928b78ef289 (patch)
tree4bc412b942702ed0a2ae1fb84986b69f697c28b4 /Python/symtable.c
parent4bbf071635504ee1c6d44f99c98e3fad191a3b13 (diff)
downloadcpython-2e0744955f1c213a55738de848a9d928b78ef289.zip
cpython-2e0744955f1c213a55738de848a9d928b78ef289.tar.gz
cpython-2e0744955f1c213a55738de848a9d928b78ef289.tar.bz2
gh-107211: Rename PySymtable_Lookup() to _PySymtable_Lookup() (#107212)
Rename the internal PySymtable_Lookup() function to _PySymtable_Lookup() and no longer export it.
Diffstat (limited to 'Python/symtable.c')
-rw-r--r--Python/symtable.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/symtable.c b/Python/symtable.c
index e2c00d1..2407367 100644
--- a/Python/symtable.c
+++ b/Python/symtable.c
@@ -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;