Benjamin Peterson's patch to fix bug 3661, sys.call_tracing segfaults.
This commit is contained in:
parent
460ce2abf7
commit
e94a37f3a1
|
@ -166,6 +166,9 @@ class SysModuleTest(unittest.TestCase):
|
|||
self.assert_(isinstance(v[3], int))
|
||||
self.assert_(isinstance(v[4], str))
|
||||
|
||||
def test_call_tracing(self):
|
||||
self.assertRaises(TypeError, sys.call_tracing, type, 2)
|
||||
|
||||
def test_dlopenflags(self):
|
||||
if hasattr(sys, "setdlopenflags"):
|
||||
self.assert_(hasattr(sys, "getdlopenflags"))
|
||||
|
|
|
@ -783,7 +783,7 @@ static PyObject *
|
|||
sys_call_tracing(PyObject *self, PyObject *args)
|
||||
{
|
||||
PyObject *func, *funcargs;
|
||||
if (!PyArg_UnpackTuple(args, "call_tracing", 2, 2, &func, &funcargs))
|
||||
if (!PyArg_ParseTuple(args, "OO!:call_tracing", &func, &PyTuple_Type, &funcargs))
|
||||
return NULL;
|
||||
return _PyEval_CallTracing(func, funcargs);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue