Register
Login
Resources
Docs Blog Datasets Glossary Case Studies Tutorials & Webinars
Product
Data Engine LLMs Platform Enterprise
Pricing Explore
Connect to our Discord channel

eval.h 1.2 KB

You have to be logged in to leave a comment. Sign In
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
  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(PyObject *, PyObject *, PyObject *);
  8. PyAPI_FUNC(PyObject *) PyEval_EvalCodeEx(PyObject *co,
  9. PyObject *globals,
  10. PyObject *locals,
  11. PyObject *const *args, int argc,
  12. PyObject *const *kwds, int kwdc,
  13. PyObject *const *defs, int defc,
  14. PyObject *kwdefs, PyObject *closure);
  15. #ifndef Py_LIMITED_API
  16. PyAPI_FUNC(PyObject *) _PyEval_EvalCodeWithName(
  17. PyObject *co,
  18. PyObject *globals, PyObject *locals,
  19. PyObject *const *args, Py_ssize_t argcount,
  20. PyObject *const *kwnames, PyObject *const *kwargs,
  21. Py_ssize_t kwcount, int kwstep,
  22. PyObject *const *defs, Py_ssize_t defcount,
  23. PyObject *kwdefs, PyObject *closure,
  24. PyObject *name, PyObject *qualname);
  25. PyAPI_FUNC(PyObject *) _PyEval_CallTracing(PyObject *func, PyObject *args);
  26. #endif
  27. #ifdef __cplusplus
  28. }
  29. #endif
  30. #endif /* !Py_EVAL_H */
Tip!

Press p or to see the previous file or, n or to see the next file

Comments

Loading...