Staging
v0.8.1
https://github.com/python/cpython
Revision 47d1d0dc30a81f507fd51cd4c2abfaec735fdf13 authored by Antoine Pitrou on 10 May 2011, 17:16:03 UTC, committed by Antoine Pitrou on 10 May 2011, 17:16:03 UTC
order to accept exactly one connection.  Patch by Daniel Evers.
1 parent 3517612
Raw File
Tip revision: 47d1d0dc30a81f507fd51cd4c2abfaec735fdf13 authored by Antoine Pitrou on 10 May 2011, 17:16:03 UTC
Issue #8498: In socket.accept(), allow to specify 0 as a backlog value in
Tip revision: 47d1d0d
eval.h

/* Interface to execute compiled code */

#ifndef Py_EVAL_H
#define Py_EVAL_H
#ifdef __cplusplus
extern "C" {
#endif

PyAPI_FUNC(PyObject *) PyEval_EvalCode(PyCodeObject *, PyObject *, PyObject *);

PyAPI_FUNC(PyObject *) PyEval_EvalCodeEx(PyCodeObject *co,
					PyObject *globals,
					PyObject *locals,
					PyObject **args, int argc,
					PyObject **kwds, int kwdc,
					PyObject **defs, int defc,
					PyObject *closure);

PyAPI_FUNC(PyObject *) _PyEval_CallTracing(PyObject *func, PyObject *args);

#ifdef __cplusplus
}
#endif
#endif /* !Py_EVAL_H */
back to top