Staging
v0.5.1
https://github.com/python/cpython
Revision 6a9005b4eb957f21020804f77f9f58ab6a957b98 authored by Barry Warsaw on 22 February 2012, 18:34:18 UTC, committed by Barry Warsaw on 22 February 2012, 18:34:18 UTC
    changeset:   75165:780008020c40
    user:        Antoine Pitrou <solipsis@pitrou.net>
    date:        Wed Feb 22 03:33:56 2012 +0100
    summary:     Fix (presumably) test_hash under big-endian systems (PPC).
1 parent 3aec568
Raw File
Tip revision: 6a9005b4eb957f21020804f77f9f58ab6a957b98 authored by Barry Warsaw on 22 February 2012, 18:34:18 UTC
Backport from 2.7 branch.
Tip revision: 6a9005b
eval.h

/* Interface to execute compiled code */

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

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

PyAPI_FUNC(PyObject *) PyEval_EvalCodeEx(PyCodeObject *co,
					PyObject *globals,
					PyObject *locals,
					PyObject **args, int argc,
					PyObject **kwds, int kwdc,
					PyObject **defs, int defc,
					PyObject *closure);

PyAPI_FUNC(PyObject *) _PyEval_CallTracing(PyObject *func, PyObject *args);

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