8000 GH-106360: Support very basic superblock introspection by markshannon · Pull Request #106422 · python/cpython · GitHub
[go: up one dir, main page]

Skip to content

GH-106360: Support very basic superblock introspection #106422

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 6 commits into from
Jul 4, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
8000
Loading
Diff view
Diff view
Prev Previous commit
Use correct name of uop.
  • Loading branch information
markshannon committed Jul 4, 2023
commit ed3b63a032467bbe1f2987e8c857c7927ad6fa66
2 changes: 1 addition & 1 deletion Lib/test/test_capi/test_misc.py
Original file line number Diff line number Diff line change
Expand Up @@ -2435,7 +2435,7 @@ def testfunc(x):
pass
if ex is None:
return
self.assertIn("SET_IP", str(ex))
self.assertIn("SAVE_IP", str(ex))


if __name__ == "__main__":
Expand Down
0