OSDN Git Service

環境情報を削除
[stux/ultron.git] / venv / Include / eval.h
diff --git a/venv/Include/eval.h b/venv/Include/eval.h
deleted file mode 100644 (file)
index a1c6e81..0000000
+++ /dev/null
@@ -1,27 +0,0 @@
-
-/* Interface to execute compiled code */
-
-#ifndef Py_EVAL_H
-#define Py_EVAL_H
-#ifdef __cplusplus
-extern "C" {
-#endif
-
-PyAPI_FUNC(PyObject *) PyEval_EvalCode(PyObject *, PyObject *, PyObject *);
-
-PyAPI_FUNC(PyObject *) PyEval_EvalCodeEx(PyObject *co,
-                                       PyObject *globals,
-                                       PyObject *locals,
-                                       PyObject **args, int argc,
-                                       PyObject **kwds, int kwdc,
-                                       PyObject **defs, int defc,
-                                       PyObject *kwdefs, PyObject *closure);
-
-#ifndef Py_LIMITED_API
-PyAPI_FUNC(PyObject *) _PyEval_CallTracing(PyObject *func, PyObject *args);
-#endif
-
-#ifdef __cplusplus
-}
-#endif
-#endif /* !Py_EVAL_H */