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 155ce40 commit 2fa728aCopy full SHA for 2fa728a
graalpython/lib-python/3/test/test_sys.py
@@ -829,6 +829,7 @@ def test_getallocatedblocks(self):
829
self.assertIn(c, range(b - 50, b + 50))
830
831
@test.support.requires_type_collecting
832
+ @support.impl_detail("finalization", graalvm=False)
833
def test_is_finalizing(self):
834
self.assertIs(sys.is_finalizing(), False)
835
# Don't use the atexit module because _Py_Finalizing is only set
@@ -851,6 +852,7 @@ def __del__(self):
851
852
self.assertEqual(stdout.rstrip(), b'True')
853
854
855
856
def test_issue20602(self):
857
# sys.flags and sys.float_info were wiped during shutdown.
858
code = """if 1:
0 commit comments