Move peephole optimizer to separate file.  (Forgot .h in previous checkin.)
diff --git a/Include/code.h b/Include/code.h
index 334ebab..6c0e706 100644
--- a/Include/code.h
+++ b/Include/code.h
@@ -88,6 +88,9 @@
 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