Author: Ronan Lamy <[email protected]>
Branch: py3.5
Changeset: r89661:7448016b9307
Date: 2017-01-18 17:33 +0000
http://bitbucket.org/pypy/pypy/changeset/7448016b9307/

Log:    Add dummy _PyGC_FINALIZED macro

diff --git a/pypy/module/cpyext/include/object.h 
b/pypy/module/cpyext/include/object.h
--- a/pypy/module/cpyext/include/object.h
+++ b/pypy/module/cpyext/include/object.h
@@ -249,6 +249,9 @@
     char dummy;
 } PyGC_Head;
 
+/* dummy GC macros */
+#define _PyGC_FINALIZED(o) 1
+
 /* Utility macro to help write tp_traverse functions.
  * To use this macro, the tp_traverse function must name its arguments
  * "visit" and "arg".  This is intended to keep tp_traverse functions
_______________________________________________
pypy-commit mailing list
[email protected]
https://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to