Staging
v0.5.1
https://github.com/python/cpython
Revision 09ea792a9423802002500ae0dfa3d668f5e5d9f6 authored by Hirokazu Yamamoto on 04 November 2010, 12:35:21 UTC, committed by Hirokazu Yamamoto on 04 November 2010, 12:35:21 UTC
svn+ssh://pythondev@svn.python.org/python/branches/py3k

........
  r86159 | hirokazu.yamamoto | 2010-11-04 21:09:08 +0900 | 2 lines

  Issue #5391: mmap.read_byte() should return unsigned value [0, 255]
  instead of signed value [-127, 128].
........
1 parent fc5f381
Raw File
Tip revision: 09ea792a9423802002500ae0dfa3d668f5e5d9f6 authored by Hirokazu Yamamoto on 04 November 2010, 12:35:21 UTC
Merged revisions 86159 via svnmerge from
Tip revision: 09ea792
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 *kwdefs, PyObject *closure);

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

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