[issue35125] asyncio shield: remove inner callback on outer cancellation

2019-05-07 Thread miss-islington
miss-islington added the comment: New changeset 299f69c24c5f0fcfea0b7385b0da661cda78df19 by Miss Islington (bot) in branch '3.7': bpo-35125: remove inner callback on outer cancellation in asyncio shield (GH-10340)

[issue35125] asyncio shield: remove inner callback on outer cancellation

2019-05-07 Thread Andrew Svetlov
Change by Andrew Svetlov : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed versions: +Python 3.8 ___ Python tracker ___

[issue35125] asyncio shield: remove inner callback on outer cancellation

2019-05-07 Thread miss-islington
miss-islington added the comment: New changeset b35acc5b3a0148c5fd4462968b310fb436726d5a by Miss Islington (bot) (Romain Picard) in branch 'master': bpo-35125: remove inner callback on outer cancellation in asyncio shield (GH-10340)

[issue35125] asyncio shield: remove inner callback on outer cancellation

2019-05-07 Thread miss-islington
Change by miss-islington : -- pull_requests: +13084 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue35125] asyncio shield: remove inner callback on outer cancellation

2018-11-05 Thread Roundup Robot
Change by Roundup Robot : -- pull_requests: +9644 stage: -> patch review ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue35125] asyncio shield: remove inner callback on outer cancellation

2018-10-31 Thread mainro
New submission from mainro : When the future returned by shield is cancelled, its completion callback of the inner future is not removed. This makes the callback list of inner inner future grow each time a shield is created. -- components: asyncio files: shield_cancel.patch keywords: