diff options
author | Neal Norwitz <nnorwitz@gmail.com> | 2006-02-28 22:36:46 +0000 |
---|---|---|
committer | Neal Norwitz <nnorwitz@gmail.com> | 2006-02-28 22:36:46 +0000 |
commit | 88f84f1c6450c12254cfaaa71a227da63f231e1f (patch) | |
tree | aba917e640244823d4f60fef9d7e6b9c2227547a /Include/symtable.h | |
parent | 3839a9e625268367bcb5906a80c4b308bb701f1b (diff) | |
download | cpython-88f84f1c6450c12254cfaaa71a227da63f231e1f.tar.gz |
No need to export PySTEntry_New, it is only used in symtable.c
Diffstat (limited to 'Include/symtable.h')
-rw-r--r-- | Include/symtable.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/Include/symtable.h b/Include/symtable.h index fefe08bb31..222831a004 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 *, |