Staging
v0.8.1
https://github.com/python/cpython
Revision 705088e65f67fa242802036ee129972b6d6fda63 authored by Fred Drake on 13 April 2001, 17:18:15 UTC, committed by Fred Drake on 13 April 2001, 17:18:15 UTC
references to an object before calling registered callbacks).

Change last uses of verify() to self.assert_().
1 parent 2a5a5ca
Raw File
Tip revision: 705088e65f67fa242802036ee129972b6d6fda63 authored by Fred Drake on 13 April 2001, 17:18:15 UTC
Added regression test for SF bug #415660 (failure to invalidate all
Tip revision: 705088e
eval.h

/* Interface to execute compiled code */

#ifndef Py_EVAL_H
#define Py_EVAL_H
#ifdef __cplusplus
extern "C" {
#endif

DL_IMPORT(PyObject *) PyEval_EvalCode(PyCodeObject *, PyObject *, PyObject *);

#ifdef __cplusplus
}
#endif
#endif /* !Py_EVAL_H */
back to top