Skip to content
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

[asyncio] bpo-30423: add regression test for orphan future causes "RuntimeError: Event loop stopped before Future completed." #3295

Merged
merged 6 commits into from Nov 1, 2017

Conversation

jimmylai
Copy link

@jimmylai jimmylai commented Sep 4, 2017

@1st1
When comment out the changes (remove future.remove_done_callback(_run_until_complete_cb) out of finally block) in run_until_complete(), this test fails.

With the committed fix, this test can pass and it work as a regression test.

ERROR: test_run_until_complete_loop_orphan_future_close_loop (test.test_asyncio.test_base_events.BaseEventLoopTests)

Traceback (most recent call last):
File "/Users/jimmylai/workspace/cpython/Lib/test/test_asyncio/test_base_events.py", line 543, in test_run_until_complete_loop_orphan_future_close_loop
loop.run_until_complete(foo(0.1))
File "/Users/jimmylai/workspace/cpython/Lib/asyncio/base_events.py", line 463, in run_until_complete
raise RuntimeError('Event loop stopped before Future completed.')
RuntimeError: Event loop stopped before Future completed.

https://bugs.python.org/issue30423

Ref: #1688

jimmylai and others added 4 commits May 20, 2017 18:40
…ure-close-loop

[Asyncio] Call remove_done_callback in finally section to prevent orphan future cause RuntimeError: Event loop stopped before Future completed.
* 'master' of https://github.com/python/cpython: (601 commits)
  remove check for bug last seem in Solaris 9 (python#3285)
  Change code owners for hashlib and ssl to the crypto team (python#3284)
  bpo-31281: Fix pathlib.Path incompatibility in fileinput (pythongh-3208)
  remove autoconf check for select() (python#3283)
  remove configure check for 'volatile' (python#3281)
  Add missing _sha3 module to Setup.dist (python#2395)
  bpo-12383: Also ignore __PYVENV_LAUNCHER__ (python#3278)
  bpo-9146: add the missing NEWS entry. (python#3275)
  Fix a c.f.as_completed() refleak previously introduced in bpo-27144 (python#3270)
  bpo-31185: Fixed miscellaneous errors in asyncio speedup module. (python#3076)
  remove a redundant lower in urllib.parse.urlsplit (python#3008)
  bpo-31323: Fix reference leak in test_ssl (python#3263)
  bpo-31250, test_asyncio: fix EventLoopTestsMixin.tearDown() (python#3264)
  bpo-31326: ProcessPoolExecutor waits for the call queue thread (python#3265)
  bpo-27144: concurrent.futures as_complete and map iterators do not keep reference to returned object (python#1560)
  bpo-31250, test_asyncio: fix dangling threads (python#3252)
  bpo-31217: Fix regrtest -R for small integer (python#3260)
  bpo-30096: Use ABC in abc reference examples (python#1220)
  bpo-30737: Update DevGuide links to new URL (pythonGH-3228)
  [Trivial] Remove now redundant assert (python#3245)
  ...
… "RuntimeError: Event loop stopped before Future completed."
@jimmylai jimmylai requested a review from 1st1 as a code owner September 4, 2017 19:56
@the-knights-who-say-ni
Copy link

Hello, and thanks for your contribution!

I'm a bot set up to make sure that the project can legally accept your contribution by verifying you have signed the PSF contributor agreement (CLA).

Unfortunately our records indicate you have not signed the CLA. For legal reasons we need you to sign this before we can look at your contribution. Please follow the steps outlined in the CPython devguide to rectify this issue.

Thanks again to your contribution and we look forward to looking at it!

loop = asyncio.new_event_loop()
asyncio.set_event_loop(loop)
try:
with mock.patch('asyncio.base_events.BaseEventLoop.run_forever', side_effect=Exception):
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Make sure that all lines are < 80 chars per PEP 8

@1st1
Copy link
Member

1st1 commented Oct 19, 2017

LGTM but please fix code style

@asvetlov
Copy link
Contributor

asvetlov commented Nov 1, 2017

Codestyle is fixed

@asvetlov asvetlov merged commit d1e3403 into python:master Nov 1, 2017
embray pushed a commit to embray/cpython that referenced this pull request Nov 9, 2017
…ntimeError: Event loop stopped before Future completed." (python#3295)

* call remove_done_callback in finally section

* [asyncio] bpo-30423 bug: add regression test for orphan future causes "RuntimeError: Event loop stopped before Future completed."
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

5 participants