repo.or.cz
/
python
/
dscho.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Files for 2.1b1 distribution.
[python/dscho.git]
/
Include
/
eval.h
blob
2a45009025781a170f8237d1595460227ba54d2f
1
2
/* Interface to execute compiled code */
3
4
#ifndef Py_EVAL_H
5
#define Py_EVAL_H
6
#ifdef __cplusplus
7
extern
"C"
{
8
#endif
9
10
DL_IMPORT
(
PyObject
*)
PyEval_EvalCode
(
PyCodeObject
*,
PyObject
*,
PyObject
*);
11
12
#ifdef __cplusplus
13
}
14
#endif
15
#endif
/* !Py_EVAL_H */