summaryrefslogtreecommitdiffstats
path: root/Python/symtable.c
diff options
context:
space:
mode:
authorNeal Norwitz <nnorwitz@gmail.com>2006-02-28 22:36:46 (GMT)
committerNeal Norwitz <nnorwitz@gmail.com>2006-02-28 22:36:46 (GMT)
commit090b3dde06c7590ed7d789bd01a7d800cc09a348 (patch)
tree5b2ff1c6d65564054ddb896e12a31db6c3b319a2 /Python/symtable.c
parent7ef75e46bb1fb13f0ac7f39e0d9fc75067bef31c (diff)
downloadcpython-090b3dde06c7590ed7d789bd01a7d800cc09a348.zip
cpython-090b3dde06c7590ed7d789bd01a7d800cc09a348.tar.gz
cpython-090b3dde06c7590ed7d789bd01a7d800cc09a348.tar.bz2
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 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)
{