File tree Expand file tree Collapse file tree 1 file changed +3
-1
lines changed
graalpython/lib-python/3/test Expand file tree Collapse file tree 1 file changed +3
-1
lines changed Original file line number Diff line number Diff line change 1
1
# Test the module type
2
2
import unittest
3
3
import weakref
4
- from test .support import gc_collect , requires_type_collecting
4
+ from test .support import gc_collect , requires_type_collecting , impl_detail
5
5
from test .support .script_helper import assert_python_ok
6
6
7
7
import sys
@@ -101,6 +101,7 @@ def f():
101
101
gc_collect ()
102
102
self .assertEqual (f ().__dict__ ["bar" ], 4 )
103
103
104
+ @impl_detail ("refcounting" , graalvm = False )
104
105
@requires_type_collecting
105
106
def test_clear_dict_in_ref_cycle (self ):
106
107
destroyed = []
@@ -266,6 +267,7 @@ def test_module_repr_source(self):
266
267
self .assertEqual (r [- len (ends_with ):], ends_with ,
267
268
'{!r} does not end with {!r}' .format (r , ends_with ))
268
269
270
+ @impl_detail ("refcounting" , graalvm = False )
269
271
@requires_type_collecting
270
272
def test_module_finalization_at_shutdown (self ):
271
273
# Module globals and builtins should still be available during shutdown
You can’t perform that action at this time.
0 commit comments