mirror of
https://github.com/RustPython/RustPython.git
synced 2026-06-02 19:39:49 +09:00
Update test_dynamic.py from 3.13.7
This commit is contained in:
6
Lib/test/test_dynamic.py
vendored
6
Lib/test/test_dynamic.py
vendored
@@ -4,7 +4,7 @@ import builtins
|
||||
import sys
|
||||
import unittest
|
||||
|
||||
from test.support import swap_item, swap_attr
|
||||
from test.support import swap_item, swap_attr, is_wasi, Py_DEBUG
|
||||
|
||||
|
||||
class RebindBuiltinsTests(unittest.TestCase):
|
||||
@@ -134,8 +134,8 @@ class RebindBuiltinsTests(unittest.TestCase):
|
||||
|
||||
self.assertEqual(foo(), 7)
|
||||
|
||||
# TODO: RUSTPYTHON
|
||||
@unittest.expectedFailure
|
||||
@unittest.expectedFailure # TODO: RUSTPYTHON
|
||||
@unittest.skipIf(is_wasi and Py_DEBUG, "requires too much stack")
|
||||
def test_load_global_specialization_failure_keeps_oparg(self):
|
||||
# https://github.com/python/cpython/issues/91625
|
||||
class MyGlobals(dict):
|
||||
|
||||
Reference in New Issue
Block a user