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 c4be74a commit fb5b85fCopy full SHA for fb5b85f
graalpython/lib-python/3/ctypes/test/test_internals.py
@@ -1,7 +1,10 @@
1
# This tests the internal _objects attribute
2
import unittest
3
from ctypes import *
4
-from sys import getrefcount as grc
+try:
5
+ from sys import getrefcount as grc
6
+except:
7
+ pass # Truffle change
8
9
# XXX This test must be reviewed for correctness!!!
10
graalpython/lib-python/3/ctypes/test/test_python_api.py
@@ -9,7 +9,10 @@
################################################################
11
12
13
14
15
16
if sys.version_info > (2, 4):
17
c_py_ssize_t = c_size_t
18
else:
0 commit comments