10000 gh-116773: Fix overlapped memory corruption issue by jkriegshauser · Pull Request #116774 · python/cpython · GitHub
[go: up one dir, main page]

Skip to content

gh-116773: Fix overlapped memory corruption issue #116774

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 7 commits into from
Mar 20, 2024
Merged
Show file tree
Hide file tree
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
Fixes
  • Loading branch information
jkriegshauser committed Mar 14, 2024
commit 76e7dd8f0e0d9d68e562a03301f3e4c3e91039a3
4 changes: 2 additions & 2 deletions Lib/test/test_asyncio/test_windows_events.py
Original file line number Diff line number Diff line change
Expand Up @@ -318,10 +318,10 @@ def threadMain():
self.loop.run_forever()
if time.time() >= end_time:
break

stop.set()
thr.join()


class WinPolicyTests(WindowsEventsTestCase):

Expand Down
Original file line number Diff line number Diff line change
@@ -1 +1 @@
Fix instances of `<_overlapped.Overlapped object at 0xXXX> still has pending operation at deallocation, the process may crash`.
Fix instances of ``<_overlapped.Overlapped object at 0xXXX> still has pending operation at deallocation, the process may crash``.
0