mirror of
https://github.com/python/cpython.git
synced 2024-11-29 04:44:13 +08:00
10 lines
260 B
C
10 lines
260 B
C
/* Interface to execute compiled code */
|
|
/* This header depends on "compile.h" */
|
|
|
|
object *eval_code PROTO((codeobject *, object *, object *, object *));
|
|
|
|
object *getglobals PROTO((void));
|
|
object *getlocals PROTO((void));
|
|
|
|
void printtraceback PROTO((FILE *));
|