[issue30508] "Task exception was never retrieved" reported for a canceled task

2017-06-11 Thread Ned Deily
Ned Deily added the comment: Yury, yes (3.6.2 cutoff is about 24 hours from now) -- ___ Python tracker ___

[issue30508] "Task exception was never retrieved" reported for a canceled task

2017-06-11 Thread Yury Selivanov
Yury Selivanov added the comment: Fixed. Ned, this will be included in 3.6.2, right? -- nosy: +ned.deily resolution: -> fixed stage: -> resolved status: open -> closed versions: +Python 3.7 ___ Python tracker

[issue30508] "Task exception was never retrieved" reported for a canceled task

2017-06-11 Thread Yury Selivanov
Yury Selivanov added the comment: New changeset d24c8287e226ac9983caf6bb826a7b53142ee31f by Yury Selivanov in branch '3.5': bpo-30508: Don't log exceptions if Task/Future "cancel()" method was called. (#2110) https://github.com/python/cpython/commit/d24c8287e226ac9983caf6bb826a7b53142ee31f

[issue30508] "Task exception was never retrieved" reported for a canceled task

2017-06-11 Thread Yury Selivanov
Yury Selivanov added the comment: New changeset 176f2ebdad93f20876c08efabd364a0e6c86de14 by Yury Selivanov in branch '3.6': bpo-30508: Don't log exceptions if Task/Future "cancel()" method was called. (#2109) https://github.com/python/cpython/commit/176f2ebdad93f20876c08efabd364a0e6c86de14

[issue30508] "Task exception was never retrieved" reported for a canceled task

2017-06-11 Thread Yury Selivanov
Yury Selivanov added the comment: New changeset 7ce1c6fb579a01bb184224a10019039fde9c8eaf by Yury Selivanov in branch 'master': bpo-30508: Don't log exceptions if Task/Future "cancel()" method called (#2050) https://github.com/python/cpython/commit/7ce1c6fb579a01bb184224a10019039fde9c8eaf

[issue30508] "Task exception was never retrieved" reported for a canceled task

2017-06-11 Thread Yury Selivanov
Changes by Yury Selivanov : -- pull_requests: +2163 ___ Python tracker ___ ___

[issue30508] "Task exception was never retrieved" reported for a canceled task

2017-06-11 Thread Yury Selivanov
Changes by Yury Selivanov : -- pull_requests: +2162 ___ Python tracker ___ ___

[issue30508] "Task exception was never retrieved" reported for a canceled task

2017-06-09 Thread Yury Selivanov
Changes by Yury Selivanov : -- pull_requests: +2112 ___ Python tracker ___ ___

[issue30508] "Task exception was never retrieved" reported for a canceled task

2017-05-29 Thread Yury Selivanov
Yury Selivanov added the comment: Yes, this is a known problem to me, thank you for creating the issue. Will work on a fix soon. -- ___ Python tracker

[issue30508] "Task exception was never retrieved" reported for a canceled task

2017-05-29 Thread Miguel Grinberg
New submission from Miguel Grinberg: I am seeing a strange issue that occurs when a task that is awaiting an asyncio.wait_for() is cancelled. I created a simple example that I think demonstrates the issue, even though it isn't exactly how it manifests on my application. When I run the