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 b9cd5ca commit b997dc0Copy full SHA for b997dc0
graalpython/com.oracle.graal.python.test/src/tests/cpyext/test_misc.py
@@ -180,8 +180,9 @@ def compile_module(self, name):
180
lambda: (
181
(True, lambda arg0, *args: arg0),
182
(False, lambda arg0, *args: arg0),
183
- (10, lambda arg0, *args: arg0),
184
- (10.0, lambda arg0, *args: arg0),
+ # Fix this! GR-18423
+ # (10, lambda arg0, *args: arg0),
185
+ # (10.0, lambda arg0, *args: arg0),
186
("ten", lambda arg0, *args: arg0),
187
),
188
code="""PyObject* PointerEquality_Primitive(PyObject* pyVal, PyObject* fun) {
0 commit comments