Skip to content

Commit 0a6e1e8

Browse files
committed
docs
1 parent 5d68313 commit 0a6e1e8

File tree

3 files changed

+4
-5
lines changed

3 files changed

+4
-5
lines changed

Lib/test/support/__init__.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1933,8 +1933,7 @@ def _check_tracemalloc():
19331933
"if tracemalloc module is tracing "
19341934
"memory allocations")
19351935

1936-
1937-
# TODO: RUSTPYTHON (comment out before)
1936+
# TODO: RUSTPYTHON; GC is not supported yet
19381937
# def check_free_after_iterating(test, iter, cls, args=()):
19391938
# class A(cls):
19401939
# def __del__(self):

Lib/test/test_array.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,7 @@ def test_numbers(self):
176176
self.assertEqual(a, b,
177177
msg="{0!r} != {1!r}; testcase={2!r}".format(a, b, testcase))
178178

179-
# TODO: RUSTPYTHON
179+
# TODO: RUSTPYTHON - requires UTF-32 encoding support in codecs and proper array reconstructor implementation
180180
@unittest.expectedFailure
181181
def test_unicode(self):
182182
teststr = "Bonne Journ\xe9e \U0002030a\U00020347"

Lib/test/test_baseexception.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ def test_inheritance(self):
8383
exc_set = set(e for e in exc_set if not e.startswith('_'))
8484
# RUSTPYTHON specific
8585
exc_set.discard("JitError")
86-
# TODO: RUSTPYTHON; this will be officially introduced in Python 3.15
86+
# XXX: RUSTPYTHON; IncompleteInputError will be officially introduced in Python 3.15
8787
exc_set.discard("IncompleteInputError")
8888
self.assertEqual(len(exc_set), 0, "%s not accounted for" % exc_set)
8989

@@ -121,7 +121,7 @@ def test_interface_no_arg(self):
121121
[repr(exc), exc.__class__.__name__ + '()'])
122122
self.interface_test_driver(results)
123123

124-
# TODO: RUSTPYTHON
124+
# TODO: RUSTPYTHON - BaseException.__setstate__ method not implemented
125125
@unittest.expectedFailure
126126
def test_setstate_refcount_no_crash(self):
127127
# gh-97591: Acquire strong reference before calling tp_hash slot

0 commit comments

Comments
 (0)