Author: Ronan Lamy <[email protected]>
Branch: multiphase
Changeset: r92290:9edde9447569
Date: 2017-08-31 17:28 +0100
http://bitbucket.org/pypy/pypy/changeset/9edde9447569/

Log:    Disable not-yet-supported tp_finalize slot in _testmultiphase

diff --git a/lib_pypy/_testmultiphase.c b/lib_pypy/_testmultiphase.c
--- a/lib_pypy/_testmultiphase.c
+++ b/lib_pypy/_testmultiphase.c
@@ -83,7 +83,7 @@
 
 static PyType_Slot Example_Type_slots[] = {
     {Py_tp_doc, "The Example type"},
-    {Py_tp_finalize, Example_finalize},
+//    {Py_tp_finalize, Example_finalize},
     {Py_tp_traverse, Example_traverse},
     {Py_tp_getattro, Example_getattro},
     {Py_tp_setattr, Example_setattr},
_______________________________________________
pypy-commit mailing list
[email protected]
https://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to