Skip to content

Commit de0bb10

Browse files
committed
crossbeam-epoch
1 parent 746e71a commit de0bb10

34 files changed

+3727
-204
lines changed

Cargo.lock

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -196,6 +196,8 @@ serde = { version = "1.0.225", default-features = false }
196196
schannel = "0.1.28"
197197
scoped-tls = "1"
198198
scopeguard = "1"
199+
memoffset = "0.9"
200+
atomic = "0.5"
199201
static_assertions = "1.1"
200202
strum = "0.27"
201203
strum_macros = "0.27"

Lib/test/support/__init__.py

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -869,13 +869,6 @@ def disable_gc():
869869

870870
@contextlib.contextmanager
871871
def gc_threshold(*args):
872-
# TODO: RUSTPYTHON; GC is not supported yet
873-
try:
874-
yield
875-
finally:
876-
pass
877-
return
878-
879872
import gc
880873
old_threshold = gc.get_threshold()
881874
gc.set_threshold(*args)

Lib/test/test_builtin.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2333,8 +2333,6 @@ def test_baddecorator(self):
23332333

23342334
class ShutdownTest(unittest.TestCase):
23352335

2336-
# TODO: RUSTPYTHON
2337-
@unittest.expectedFailure
23382336
def test_cleanup(self):
23392337
# Issue #19255: builtins are still available at shutdown
23402338
code = """if 1:

Lib/test/test_dict.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -369,8 +369,6 @@ def test_copy_fuzz(self):
369369
self.assertNotEqual(d, d2)
370370
self.assertEqual(len(d2), len(d) + 1)
371371

372-
# TODO: RUSTPYTHON
373-
@unittest.expectedFailure
374372
def test_copy_maintains_tracking(self):
375373
class A:
376374
pass

0 commit comments

Comments
 (0)