We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1adc7f2 commit d61ce4cCopy full SHA for d61ce4c
graalpython/com.oracle.graal.python.test/src/tests/cpyext/test_abstract.py
@@ -392,6 +392,7 @@ def test_sequence_check(self):
392
TestSequenceCheck = CPyExtType("TestSequenceCheck",
393
"""
394
PyObject* test_sq_item(PyObject *a, Py_ssize_t i) {
395
+ Py_INCREF(a);
396
return a;
397
}
398
PyObject* callCheck(PyObject* a) {
@@ -424,6 +425,7 @@ def test_mapping_check(self):
424
425
TestMappingCheck = CPyExtType("TestMappingCheck",
426
427
PyObject* test_mp_subscript(PyObject* a, PyObject* b) {
428
429
430
431
0 commit comments