8000 bpo-42392: Remove loop parameter form asyncio locks and Queue by uriyyo · Pull Request #23420 · python/cpython · GitHub
[go: up one dir, main page]

Skip to content

bpo-42392: Remove loop parameter form asyncio locks and Queue #23420

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 5 commits into from
Nov 24, 2020
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
Update Lib/asyncio/mixins.py
Co-authored-by: Andrew Svetlov <andrew.svetlov@gmail.com>
  • Loading branch information
uriyyo and asvetlov authored Nov 20, 2020
commit 0c764ff9a2d319f4d7f07c758017e937e076493b
2 changes: 1 addition & 1 deletion Lib/asyncio/mixins.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
_global_lock = threading.Lock()


class LoopBoundedMixin:
class _LoopBoundedMixin:
_loop = None

def _get_loop(self):
Expand Down
0