Wrong function name broke extension in Python 3 when implementing __round__ proxying. #10

This commit is contained in:
Graham Dumpleton
2014-04-25 21:52:25 +10:00
parent dbba4acb25
commit 979398a64a

View File

@@ -1071,7 +1071,7 @@ static PyObject *WraptObjectProxy_round(
Py_INCREF(round);
Py_DECREF(module);
result = PyObject_CallFunctionObjectArgs(round, self->wrapped, NULL);
result = PyObject_CallFunctionObjArgs(round, self->wrapped, NULL);
Py_DECREF(round);