summaryrefslogtreecommitdiffstats
path: root/Include
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 /Include
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 'Include')
-rw-r--r--Include/symtable.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/Include/symtable.h b/Include/symtable.h
index fefe08b..222831a 100644
--- a/Include/symtable.h
+++ b/Include/symtable.h
@@ -1,5 +1,6 @@
#ifndef Py_SYMTABLE_H
#define Py_SYMTABLE_H
+
#ifdef __cplusplus
extern "C" {
#endif
@@ -48,8 +49,6 @@ PyAPI_DATA(PyTypeObject) PySTEntry_Type;
#define PySTEntry_Check(op) ((op)->ob_type == &PySTEntry_Type)
-PyAPI_FUNC(PySTEntryObject *) \
- PySTEntry_New(struct symtable *, identifier, _Py_block_ty, void *, int);
PyAPI_FUNC(int) PyST_GetScope(PySTEntryObject *, PyObject *);
PyAPI_FUNC(struct symtable *) PySymtable_Build(mod_ty, const char *,