Skip to content

Commit a3a65a0

Browse files
committed
Throw-away commit to check sanity of Azure Pipelines
1 parent b3dd8d3 commit a3a65a0

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

Objects/funcobject.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -851,7 +851,8 @@ cm_descr_get(PyObject *self, PyObject *obj, PyObject *type)
851851
type = (PyObject *)(Py_TYPE(obj));
852852
if (Py_TYPE(cm->cm_callable)->tp_descr_get != NULL) {
853853
return Py_TYPE(cm->cm_callable)->tp_descr_get(cm->cm_callable, type,
854-
type);
854+
//type);
855+
NULL);
855856
}
856857
return PyMethod_New(cm->cm_callable, type);
857858
}

0 commit comments

Comments
 (0)