Skip to content

Commit d2306ce

Browse files
committed
Backed out changeset f23fa1f7b68f
Sorry, I didn't want to push this change before the review :-( I was pushing a change into the 2.7 branch.
1 parent 766af55 commit d2306ce

File tree

8 files changed

+1345
-1390
lines changed

8 files changed

+1345
-1390
lines changed

Diff for: Include/eval.h

+6-16
Original file line numberDiff line numberDiff line change
@@ -10,24 +10,14 @@ extern "C" {
1010
PyAPI_FUNC(PyObject *) PyEval_EvalCode(PyObject *, PyObject *, PyObject *);
1111

1212
PyAPI_FUNC(PyObject *) PyEval_EvalCodeEx(PyObject *co,
13-
PyObject *globals,
14-
PyObject *locals,
15-
PyObject **args, int argc,
16-
PyObject **kwds, int kwdc,
17-
PyObject **defs, int defc,
18-
PyObject *kwdefs, PyObject *closure);
13+
PyObject *globals,
14+
PyObject *locals,
15+
PyObject **args, int argc,
16+
PyObject **kwds, int kwdc,
17+
PyObject **defs, int defc,
18+
PyObject *kwdefs, PyObject *closure);
1919

2020
#ifndef Py_LIMITED_API
21-
PyAPI_FUNC(PyObject *) _PyEval_EvalCodeWithName(
22-
PyObject *co,
23-
PyObject *globals, PyObject *locals,
24-
PyObject **args, Py_ssize_t argcount,
25-
PyObject **kwnames, PyObject **kwargs,
26-
Py_ssize_t kwcount, int kwstep,
27-
PyObject **defs, Py_ssize_t defcount,
28-
PyObject *kwdefs, PyObject *closure,
29-
PyObject *name, PyObject *qualname);
30-
3121
PyAPI_FUNC(PyObject *) _PyEval_CallTracing(PyObject *func, PyObject *args);
3222
#endif
3323

Diff for: Makefile.pre.in

-1
Original file line numberDiff line numberDiff line change
@@ -409,7 +409,6 @@ OBJECT_OBJS= \
409409
Objects/bytes_methods.o \
410410
Objects/bytearrayobject.o \
411411
Objects/bytesobject.o \
412-
Objects/call.o \
413412
Objects/cellobject.o \
414413
Objects/classobject.o \
415414
Objects/codeobject.o \

0 commit comments

Comments
 (0)