diff options
author | Jeremy Hylton <jeremy@alum.mit.edu> | 2005-10-21 14:58:06 (GMT) |
---|---|---|
committer | Jeremy Hylton <jeremy@alum.mit.edu> | 2005-10-21 14:58:06 (GMT) |
commit | ec97a28b60b40d366379d22876baebcdd06a89ad (patch) | |
tree | b1c4f1aa28bd5dbdfbe182aebe1c75fb164c9c04 /Include/compile.h | |
parent | 0f00ba8bd885d86e028f971292a5f20b590a0c13 (diff) | |
download | cpython-ec97a28b60b40d366379d22876baebcdd06a89ad.zip cpython-ec97a28b60b40d366379d22876baebcdd06a89ad.tar.gz cpython-ec97a28b60b40d366379d22876baebcdd06a89ad.tar.bz2 |
Fix a bunch of imports to use code.h instead of compile.h.
Remove duplicate declarations from compile.h
Diffstat (limited to 'Include/compile.h')
-rw-r--r-- | Include/compile.h | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/Include/compile.h b/Include/compile.h index 27a3f76..01fd756 100644 --- a/Include/compile.h +++ b/Include/compile.h @@ -11,11 +11,6 @@ extern "C" { /* Public interface */ struct _node; /* Declare the existence of this type */ PyAPI_FUNC(PyCodeObject *) PyNode_Compile(struct _node *, const char *); -PyAPI_FUNC(PyCodeObject *) PyCode_New( - int, int, int, int, PyObject *, PyObject *, PyObject *, PyObject *, - PyObject *, PyObject *, PyObject *, PyObject *, int, PyObject *); - /* same as struct above */ -PyAPI_FUNC(int) PyCode_Addr2Line(PyCodeObject *, int); /* Future feature support */ |