File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change 11Enable vectorcall methods on GraalPy
22Provide compatibility shims in PyTuple macros for PyPy and GraalPy
3+ Call Py_Is function on GraalPy
Original file line number Diff line number Diff line change @@ -137,13 +137,13 @@ pub struct PyVarObject {
137137// skipped private _PyVarObject_CAST
138138
139139#[ inline]
140- #[ cfg( not( all( PyPy , Py_3_10 ) ) ) ]
140+ #[ cfg( not( all( GraalPy , PyPy , Py_3_10 ) ) ) ]
141141#[ cfg_attr( docsrs, doc( cfg( all( ) ) ) ) ]
142142pub unsafe fn Py_Is ( x : * mut PyObject , y : * mut PyObject ) -> c_int {
143143 ( x == y) . into ( )
144144}
145145
146- #[ cfg( all( PyPy , Py_3_10 ) ) ]
146+ #[ cfg( all( GraalPy , PyPy , Py_3_10 ) ) ]
147147#[ cfg_attr( docsrs, doc( cfg( all( ) ) ) ) ]
148148extern "C" {
149149 #[ cfg_attr( PyPy , link_name = "PyPy_Is" ) ]
You can’t perform that action at this time.
0 commit comments