summaryrefslogtreecommitdiff
path: root/Python/symtable.c
diff options
context:
space:
mode:
authorNeal Norwitz <nnorwitz@gmail.com>2006-02-28 22:36:46 +0000
committerNeal Norwitz <nnorwitz@gmail.com>2006-02-28 22:36:46 +0000
commit88f84f1c6450c12254cfaaa71a227da63f231e1f (patch)
treeaba917e640244823d4f60fef9d7e6b9c2227547a /Python/symtable.c
parent3839a9e625268367bcb5906a80c4b308bb701f1b (diff)
downloadcpython-88f84f1c6450c12254cfaaa71a227da63f231e1f.tar.gz
No need to export PySTEntry_New, it is only used in symtable.c
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 bc0fc3364a..c8eab58076 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)
{