Skip to content
Closed
Changes from 1 commit
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
b0ec8ee
Updated bdb.py + test_bdb.py
terryluan12 Dec 30, 2025
91d4447
Deleted _pycodecs.py
terryluan12 Dec 30, 2025
ac9bd54
Updated code.py library
terryluan12 Dec 30, 2025
d5f6198
Updated the _pydatetime.py lib
terryluan12 Dec 30, 2025
f585018
Removed distutils package
terryluan12 Dec 30, 2025
da4a841
Updated doctest package
terryluan12 Dec 30, 2025
d7405c9
* Updated datetimetester.py
terryluan12 Dec 30, 2025
e82917e
Updated enum and test_enum.py
terryluan12 Dec 30, 2025
6e59ca5
Updated filecmp + test_filecmp
terryluan12 Dec 30, 2025
aae2dcf
Updated fractions + test_fractions
terryluan12 Dec 30, 2025
fd34286
Updated ftplib + test_ftplib
terryluan12 Dec 30, 2025
77db70c
Updated hmac + test_hmac
terryluan12 Dec 30, 2025
7c13c61
* Updated mailbox + added test_mailbox.py
terryluan12 Dec 30, 2025
3752174
Updated nturl2path.py
terryluan12 Dec 30, 2025
cd5865e
Added pathlib + test_pathlib packages
terryluan12 Dec 30, 2025
0e3365a
Updated pkgutil.py & test_pkgutil.py
terryluan12 Dec 30, 2025
d313adc
Updated platform.py + test_platform.py
terryluan12 Dec 30, 2025
6da715b
Updated plistlib + test_plistlib
terryluan12 Dec 30, 2025
2ee4e37
Merge branch 'add_tests' into update_simple_packages_2
terryluan12 Dec 30, 2025
28493a7
Updated enum and plistlib tests using the script
terryluan12 Dec 30, 2025
312f7d9
Updated pkgutil test with the script
terryluan12 Dec 30, 2025
39f990e
Ran/updated ftplib +test_hmac + pathlib tests with the script
terryluan12 Dec 30, 2025
1cd4ad6
Added comment to pathlib
terryluan12 Dec 30, 2025
88857d9
Clarified the comments at the top of test_pathlib
terryluan12 Dec 30, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Merge branch 'add_tests' into update_simple_packages_2
  • Loading branch information
terryluan12 committed Dec 30, 2025
commit 2ee4e378694c29d034fc390acdd83bde4060aeef
9 changes: 5 additions & 4 deletions Lib/test/test_bdb.py
Original file line number Diff line number Diff line change
Expand Up @@ -616,7 +616,7 @@ def test_step_next_on_last_statement(self):
with TracerRun(self) as tracer:
tracer.runcall(tfunc_main)

@unittest.skip("TODO: RUSTPYTHON")
@unittest.skip('TODO: RUSTPYTHON')
# AssertionError: All paired tuples have not been processed, the last one was number 1 [('next',), ('quit',)]
def test_stepinstr(self):
self.expect_set = [
Expand All @@ -626,7 +626,8 @@ def test_stepinstr(self):
]
with TracerRun(self) as tracer:
tracer.runcall(tfunc_main)
@unittest.skip("TODO: RUSTPYTHON, Error in atexit._run_exitfuncs")

@unittest.skip('TODO: RUSTPYTHON; Error in atexit._run_exitfuncs')
def test_next(self):
self.expect_set = [
('line', 2, 'tfunc_main'), ('step', ),
Expand Down Expand Up @@ -740,7 +741,7 @@ def test_until_in_caller_frame(self):
with TracerRun(self) as tracer:
tracer.runcall(tfunc_main)

@unittest.skip("TODO: RUSTPYTHON, Error in atexit._run_exitfuncs")
@unittest.skip('TODO: RUSTPYTHON; Error in atexit._run_exitfuncs')
@patch_list(sys.meta_path)
def test_skip(self):
# Check that tracing is skipped over the import statement in
Expand Down Expand Up @@ -1248,7 +1249,7 @@ def main():
with TracerRun(self) as tracer:
tracer.runcall(tfunc_import)

@unittest.skip("TODO: RUSTPYTHON")
@unittest.skip('TODO: RUSTPYTHON')
# AssertionError: All paired tuples have not been processed, the last one was number 1 [('next',)]
def test_next_to_botframe(self):
# gh-125422
Expand Down
You are viewing a condensed version of this merge commit. You can view the full changes here.