summaryrefslogtreecommitdiffstats
path: root/Python/symtable.c
diff options
context:
space:
mode:
Diffstat (limited to 'Python/symtable.c')
-rw-r--r--Python/symtable.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/Python/symtable.c b/Python/symtable.c
index bc0fc33..c8eab58 100644
--- a/Python/symtable.c
+++ b/Python/symtable.c
@@ -14,7 +14,8 @@
#define IMPORT_STAR_WARNING "import * only allowed at module level"
-PySTEntryObject *
+/* XXX(nnorwitz): change name since static? */
+static PySTEntryObject *
PySTEntry_New(struct symtable *st, identifier name, _Py_block_ty block,
void *key, int lineno)
{