8000 gh-76785: Update test.support.interpreters to Align With PEP 734 by ericsnowcurrently · Pull Request #115566 · python/cpython · GitHub
[go: up one dir, main page]

Skip to content

gh-76785: Update test.support.interpreters to Align With PEP 734 #115566

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 19 commits into from
Feb 28, 2024
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.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Drop an errant line.
  • Loading branch information
ericsnowcurrently committed Feb 28, 2024
commit 8c25b2ff21be0868e4c0993259728bca74db7322
1 change: 0 additions & 1 deletion Lib/test/support/interpreters/queues.py
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,6 @@ def put_nowait(self, obj, *, sharedonly=None):
fmt = self._fmt
else:
fmt = _SHARED_ONLY if sharedonly else _PICKLED
fmt = _SHARED_ONLY if sharedonly else _PICKLED
if fmt is _PICKLED:
obj = pickle.dumps(obj)
try:
Expand Down
0