Move peephole optimizer to separate file. (Forgot .h in previous checkin.)

This commit is contained in:
Jeremy Hylton 2006-08-21 16:20:29 +00:00
parent 644dddcc3f
commit 271d59343b

View file

@ -88,6 +88,9 @@ typedef struct _addr_pair {
PyAPI_FUNC(int) PyCode_CheckLineNumber(PyCodeObject* co,
int lasti, PyAddrPair *bounds);
PyAPI_FUNC(PyObject*) PyCode_Optimize(PyObject *code, PyObject* consts,
PyObject *names, PyObject *lineno_obj);
#ifdef __cplusplus
}
#endif