Team Fortress 2 Source Code as on 22/4/2020
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

25 lines
557 B

  1. /* Interface to execute compiled code */
  2. #ifndef Py_EVAL_H
  3. #define Py_EVAL_H
  4. #ifdef __cplusplus
  5. extern "C" {
  6. #endif
  7. PyAPI_FUNC(PyObject *) PyEval_EvalCode(PyCodeObject *, PyObject *, PyObject *);
  8. PyAPI_FUNC(PyObject *) PyEval_EvalCodeEx(PyCodeObject *co,
  9. PyObject *globals,
  10. PyObject *locals,
  11. PyObject **args, int argc,
  12. PyObject **kwds, int kwdc,
  13. PyObject **defs, int defc,
  14. PyObject *closure);
  15. PyAPI_FUNC(PyObject *) _PyEval_CallTracing(PyObject *func, PyObject *args);
  16. #ifdef __cplusplus
  17. }
  18. #endif
  19. #endif /* !Py_EVAL_H */