Commit 2514ec7f authored by Guido van Rossum's avatar Guido van Rossum

Used new names for PyBuiltin_GetDict, PyBuiltin_GetModule.

Added PyBuiltin_Init.
parent b422c249
...@@ -30,8 +30,9 @@ OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. ...@@ -30,8 +30,9 @@ OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
/* Built-in module interface */ /* Built-in module interface */
extern PyObject *getbuiltindict Py_PROTO(()); extern void PyBuiltin_Init Py_PROTO((void));
extern PyObject *getbuiltinmod Py_PROTO(()); extern PyObject *PyBuiltin_GetDict Py_PROTO(());
extern PyObject *PyBuiltin_GetModule Py_PROTO(());
#ifdef __cplusplus #ifdef __cplusplus
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment