Skip to content

Commit 868076d

Browse files
committed
[GR-21590] Update Python imports.
PullRequest: graalpython/3073
2 parents e0db1b4 + be5e12b commit 868076d

File tree

3 files changed

+9
-5
lines changed

3 files changed

+9
-5
lines changed

ci.jsonnet

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{ "overlay": "220d08232abfed3f3e8ae7039ecd662be6968d20" }
1+
{ "overlay": "8462b258e6f0a8ec9586086df1cd0fca1165a989" }

graalpython/lib-python/3/test/test_weakref.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -164,6 +164,7 @@ def test_constructor_kwargs(self):
164164
c = C()
165165
self.assertRaises(TypeError, weakref.ref, c, callback=None)
166166

167+
@support.impl_detail("weakref nondeterministic", graalpy=False)
167168
def test_proxy_ref(self):
168169
o = C()
169170
o.bar = 1
@@ -474,6 +475,7 @@ class MyObj:
474475
with self.assertRaises(TypeError):
475476
hash(weakref.proxy(obj))
476477

478+
@support.impl_detail("weakref nondeterministic", graalpy=False)
477479
def test_getweakrefcount(self):
478480
o = C()
479481
ref1 = weakref.ref(o)
@@ -496,6 +498,7 @@ def test_getweakrefcount(self):
496498
self.assertEqual(weakref.getweakrefcount(1), 0,
497499
"got wrong number of weak reference objects for int")
498500

501+
@support.impl_detail("weakref nondeterministic", graalpy=False)
499502
def test_getweakrefs(self):
500503
o = C()
501504
ref1 = weakref.ref(o, self.callback)
@@ -687,6 +690,7 @@ class D:
687690
del c1, c2, C, D
688691
gc.collect()
689692

693+
@support.impl_detail("weakref nondeterministic", graalpy=False)
690694
def test_callback_in_cycle_resurrection(self):
691695
import gc
692696

mx.graalpython/suite.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -45,31 +45,31 @@
4545
},
4646
{
4747
"name": "sdk",
48-
"version": "174f02477cdb2e03a1ac550fce1317766a055b23",
48+
"version": "7323f923281327cfb7346fbb5d8b2d35de886e04",
4949
"subdir": True,
5050
"urls": [
5151
{"url": "https://github.com/oracle/graal", "kind": "git"},
5252
]
5353
},
5454
{
5555
"name": "tools",
56-
"version": "174f02477cdb2e03a1ac550fce1317766a055b23",
56+
"version": "7323f923281327cfb7346fbb5d8b2d35de886e04",
5757
"subdir": True,
5858
"urls": [
5959
{"url": "https://github.com/oracle/graal", "kind": "git"},
6060
],
6161
},
6262
{
6363
"name": "sulong",
64-
"version": "174f02477cdb2e03a1ac550fce1317766a055b23",
64+
"version": "7323f923281327cfb7346fbb5d8b2d35de886e04",
6565
"subdir": True,
6666
"urls": [
6767
{"url": "https://github.com/oracle/graal", "kind": "git"},
6868
]
6969
},
7070
{
7171
"name": "regex",
72-
"version": "174f02477cdb2e03a1ac550fce1317766a055b23",
72+
"version": "7323f923281327cfb7346fbb5d8b2d35de886e04",
7373
"subdir": True,
7474
"urls": [
7575
{"url": "https://github.com/oracle/graal", "kind": "git"},

0 commit comments

Comments
 (0)