Miss Islington (bot)
33dd75a28f
bpo-38356: Fix ThreadedChildWatcher thread leak in test_asyncio (GH-16552)
...
Motivation for this PR (comment from @vstinner in bpo issue):
```
Warning seen o AMD64 Ubuntu Shared 3.x buildbot:
https://buildbot.python.org/all/GH-/builders/141/builds/2593
test_devnull_output (test.test_a=syncio.test_subprocess.SubprocessThreadedWatcherTests) ...
Warning -- threading_cleanup() failed to cleanup 1 threads (count: 1, dangling: 2)
```
The following implementation details for the new method are TBD:
1) Public vs private
2) Inclusion in `close()`
3) Name
4) Coroutine vs subroutine method
5) *timeout* parameter
If it's a private method, 3, 4, and 5 are significantly less important.
I started with the most minimal implementation that fixes the dangling threads without modifying the regression tests, which I think is particularly important. I typically try to avoid directly modifying existing tests as much as possible unless it's necessary to do so. However, I am open to changing any part of this.
https://bugs.python.org/issue38356
(cherry picked from commit 0ca7cc7fc0 )
Co-authored-by: Kyle Stanley <aeros167@gmail.com >
2020-01-12 03:21:00 -08:00
Andrew Svetlov
4112a3da2e
[3.8] bpo-39191: Fix RuntimeWarning in asyncio test (GH-17863) ( #17894 )
...
https://bugs.python.org/issue39191 .
(cherry picked from commit 10ac0cded2 )
Co-authored-by: Andrew Svetlov <andrew.svetlov@gmail.com >
2020-01-07 16:55:19 +02:00
Andrew Svetlov
867d8333ce
[3.8] bpo-39191: Don't spawn a task before failing (GH-17796) (GH-17820)
...
(cherry picked from commit 3a5de51159 )
Co-authored-by: Andrew Svetlov <andrew.svetlov@gmail.com >
2020-01-04 11:49:11 +02:00
Miss Islington (bot)
4ed79b7800
Fix import path for asyncio.TimeoutError (GH-17691)
...
(cherry picked from commit 025eeaa196 )
Co-authored-by: Andrew Svetlov <andrew.svetlov@gmail.com >
2019-12-24 03:04:12 -08:00
Miss Islington (bot)
79c29742a8
bpo-37228: Fix loop.create_datagram_endpoint()'s usage of SO_REUSEADDR (GH-17311) ( #17529 )
...
(cherry picked from commit ab513a38c9 )
Co-authored-by: Kyle Stanley <aeros167@gmail.com >
2019-12-09 15:39:54 +01:00
Miss Islington (bot)
b22183f273
bpo-39006: Fix asyncio when the ssl module is missing (GH-17524)
...
Fix asyncio when the ssl module is missing: only check for
ssl.SSLSocket instance if the ssl module is available.
(cherry picked from commit 82b4950b5e )
Co-authored-by: Victor Stinner <vstinner@python.org >
2019-12-09 06:19:48 -08:00
Andrew Svetlov
930cef2770
[3.8] bpo-37404: Raising value error if an SSLSocket is passed to asyncio functions (GH-16457) ( #17496 )
...
https://bugs.python.org/issue37404
(cherry picked from commit 892f9e0777 )
Co-authored-by: idomic <michael.ido@gmail.com >
2019-12-07 14:44:20 +02:00
Miss Islington (bot)
7fde4f446a
bpo-38529: Fix asyncio stream warning (GH-17474)
...
(cherry picked from commit 7ddcd0caa4 )
Co-authored-by: Andrew Svetlov <andrew.svetlov@gmail.com >
2019-12-07 03:39:57 -08:00
Miss Islington (bot)
694c03fabb
bpo-38785: Prevent asyncio from crashing (GH-17144)
...
if parent `__init__` is not called from a constructor of object derived from `asyncio.Future`
https://bugs.python.org/issue38785
(cherry picked from commit dad6be5ffe )
Co-authored-by: Andrew Svetlov <andrew.svetlov@gmail.com >
2019-11-13 13:54:56 -08:00
Miss Skeleton (bot)
cbf474c98e
bpo-34679: ProactorEventLoop only uses set_wakeup_fd() in main thread (GH-16901)
...
bpo-34679, bpo-38563: asyncio.ProactorEventLoop.close() now only calls
signal.set_wakeup_fd() in the main thread.
(cherry picked from commit 1b53a24fb4 )
Co-authored-by: Victor Stinner <vstinner@python.org >
2019-10-23 08:43:57 -07:00
Miss Islington (bot)
8edde5caab
bpo-34344 Fix AbstractEventLoopPolicy.get_event_loop docstring (GH-16463)
...
(cherry picked from commit b23a8423a9 )
Co-authored-by: idomic <michael.ido@gmail.com >
2019-10-03 14:26:57 -07:00
Miss Islington (bot)
2f644c0dc9
Fix and improve asyncio.run() docs (GH-16403) (GH-16504)
...
(cherry picked from commit e407013089 )
Co-authored-by: Kyle Stanley <aeros167@gmail.com >
2019-09-30 18:46:43 -07:00
Yury Selivanov
1c19d656a7
bpo-38242: Revert "bpo-36889: Merge asyncio streams (GH-13251)" ( #16482 ) ( #16485 )
...
See https://bugs.python.org/issue38242 for more details
2019-09-29 22:30:17 -07:00
Miss Islington (bot)
19cd5951ec
bpo-38019: correctly handle pause/resume reading of closed asyncio unix pipe (GH-16472)
...
(cherry picked from commit 58498bc717 )
Co-authored-by: Andrew Svetlov <andrew.svetlov@gmail.com >
2019-09-29 05:20:15 -07:00
Miss Islington (bot)
16cec136b7
bpo-38248: Fix inconsistent immediate asyncio.Task cancellation (GH-16330) (GH-16383)
...
(cherry picked from commit edad4d89e3 )
Co-authored-by: Yury Selivanov <yury@edgedb.com >
2019-09-25 04:48:52 -07:00
Miss Islington (bot)
4633355a06
bpo-38260: Add Docs on asyncio.run (GH-16337)
...
Add docs about return and raise exception on asyncio.run
https://bugs.python.org/issue38260
Automerge-Triggered-By: @asvetlov
(cherry picked from commit 17deb16883 )
Co-authored-by: Emmanuel Arias <emmanuelarias30@gmail.com >
2019-09-25 02:12:47 -07:00
Andrew Svetlov
6638c92260
[3.8] bpo-38148: Add slots to asyncio transports (GH-16077) (GH-16093)
...
* bpo-38148: Add slots to asyncio transports
* Update Misc/NEWS.d/next/Library/2019-09-13-08-55-43.bpo-38148.Lnww6D.rst
Co-Authored-By: Kyle Stanley <aeros167@gmail.com >
(cherry picked from commit 9eb35ab0d7 )
Co-authored-by: Andrew Svetlov <andrew.svetlov@gmail.com >
2019-09-13 16:14:55 +03:00
Miss Islington (bot)
b9bfe143d1
bpo-36889: Document Stream class and add docstrings (GH-14488)
...
* This just copies the docs from `StreamWriter` and `StreamReader`.
* Add docstring for asyncio functions.
https://bugs.python.org/issue36889
Automerge-Triggered-By: @asvetlov
(cherry picked from commit d31b31516c )
Co-authored-by: Xtreak <tir.karthi@gmail.com >
2019-09-13 04:23:43 -07:00
Miss Islington (bot)
345bfc990f
bpo-36373: Deprecate explicit loop in task and subprocess API (GH-16033)
...
(cherry picked from commit a488879cba )
Co-authored-by: Andrew Svetlov <andrew.svetlov@gmail.com >
2019-09-12 05:59:50 -07:00
Andrew Svetlov
4601f7a49f
[3.8] bpo-36373: Fix deprecation warnings (GH-15889) (GH-15901)
...
https://bugs.python.org/issue36373
(cherry picked from commit 7264e92b71 )
Co-authored-by: Andrew Svetlov <andrew.svetlov@gmail.com >
2019-09-11 13:40:36 +03:00
Miss Islington (bot)
f12ff05bc0
bpo-38066: Hide internal Stream methods (GH-15762)
...
feed_eof(), feed_data(), set_exception(), and set_transport() are prefixed with underscore now.
https://bugs.python.org/issue38066
(cherry picked from commit 12c122ae95 )
Co-authored-by: Andrew Svetlov <andrew.svetlov@gmail.com >
2019-09-10 06:44:32 -07:00
Miss Islington (bot)
55daf1a561
bpo-36373: Deprecate explicit loop parameter in all public asyncio APIs [queue] (GH-13950)
...
This PR deprecate explicit loop parameters in all public asyncio APIs
This issues is split to be easier to review.
fourth step: queue.py
https://bugs.python.org/issue36373
(cherry picked from commit 9008be303a )
Co-authored-by: Emmanuel Arias <emmanuelarias30@gmail.com >
2019-09-10 05:50:14 -07:00
Miss Islington (bot)
bb8fc8bd30
bpo-36373: Deprecate explicit loop parameter in all public asyncio APIs [locks] (GH-13920)
...
This PR deprecate explicit loop parameters in all public asyncio APIs
This issues is split to be easier to review.
Third step: locks.py
https://bugs.python.org/issue36373
(cherry picked from commit 537877d85d )
Co-authored-by: Emmanuel Arias <emmanuelarias30@gmail.com >
2019-09-10 04:26:54 -07:00
Miss Islington (bot)
4bd1d05ee2
Fix typos mostly in comments, docs and test names (GH-15209)
...
(cherry picked from commit 39d87b5471 )
Co-authored-by: Min ho Kim <minho42@gmail.com >
2019-08-30 13:42:54 -07:00
Miss Islington (bot)
69d22b8fee
bpo-34679: Restore instantiation Windows IOCP event loop from non-main thread (GH-15492)
...
* Restore running proactor event loop from non-main thread
Co-Authored-By: Kyle Stanley <aeros167@gmail.com >
(cherry picked from commit 1c06009986 )
Co-authored-by: Andrew Svetlov <andrew.svetlov@gmail.com >
2019-08-26 03:14:54 -07:00