Add DLL level b/w compat for PySequence_In and PyEval_CallObject
diff --git a/Include/ceval.h b/Include/ceval.h
index 5b96d9e..8200e3c 100644
--- a/Include/ceval.h
+++ b/Include/ceval.h
@@ -40,6 +40,10 @@
 DL_IMPORT(PyObject *) PyEval_CallObjectWithKeywords
 	Py_PROTO((PyObject *, PyObject *, PyObject *));
 
+/* DLL-level Backwards compatibility: */
+#undef PyEval_CallObject
+DL_IMPORT(PyObject *) PyEval_CallObject Py_PROTO((PyObject *, PyObject *));
+
 /* Inline this */
 #define PyEval_CallObject(func,arg) \
         PyEval_CallObjectWithKeywords(func, arg, (PyObject *)NULL)