| Commit message (Expand) | Author | Age | Files | Lines |
* | Issue #28399: Remove UNIX socket from FS before binding. | Yury Selivanov | 2016-10-09 | 1 | -0/+11 |
|
|
* | asyncio: Only allow Unix Stream sockets for loop.create_unix_server/connection | Yury Selivanov | 2016-10-07 | 1 | -2/+9 |
|
|
* | Issue #28369: Raise an error when transport's FD is used with add_reader | Yury Selivanov | 2016-10-05 | 1 | -13/+13 |
|
|
* | Issue #28368: Refuse monitoring processes if the child watcher has no loop at... | Yury Selivanov | 2016-10-05 | 1 | -5/+18 |
|
|
* | Issue #26909: Fix slow pipes IO in asyncio. | Yury Selivanov | 2016-09-15 | 1 | -15/+12 |
|
|
* | asyncio: Add set_protocol / get_protocol methods to Transports | Yury Selivanov | 2016-09-12 | 1 | -0/+12 |
|
|
* | Fix ordering issues in UNIX read/write pipe transport constructors. | Guido van Rossum | 2016-08-31 | 1 | -6/+17 |
|
|
* | Don't select for read on character devices in _UnixWritePipeTransport. | Guido van Rossum | 2016-08-31 | 1 | -4/+4 |
|
|
* | Issue #27041: asyncio: Add loop.create_future method | Yury Selivanov | 2016-05-16 | 1 | -1/+1 |
|
|
* | asyncio: Fix unix pipe transport 'repr' methods | Yury Selivanov | 2016-05-13 | 1 | -4/+10 |
|
|
* | asyncio: Don't log ConnectionAbortedError | Victor Stinner | 2016-04-01 | 1 | -1/+1 |
|
|
* | asyncio: Cleanup Future API | Yury Selivanov | 2015-11-17 | 1 | -2/+4 |
|
|
* | asyncio: Add Transport.is_closing() | Yury Selivanov | 2015-11-16 | 1 | -0/+6 |
|
|
* | asyncio: Sync with upstream (compat module) | Yury Selivanov | 2015-08-04 | 1 | -2/+3 |
|
|
* | Issue #23353, asyncio: Workaround CPython bug #23353 | Victor Stinner | 2015-02-02 | 1 | -2/+10 |
|
|
* | Issue #23347, asyncio: Make BaseSubprocessTransport.wait() private | Victor Stinner | 2015-01-29 | 1 | -1/+1 |
|
|
* | asyncio: sync with Tulip | Victor Stinner | 2015-01-29 | 1 | -5/+10 |
|
|
* | Issue #23243, asyncio: Emit a ResourceWarning when an event loop or a transport | Victor Stinner | 2015-01-29 | 1 | -0/+19 |
|
|
* | asyncio: sync with Tulip | Victor Stinner | 2015-01-29 | 1 | -6/+11 |
|
|
* | asyncio: SSL transports now clear their reference to the waiter | Victor Stinner | 2015-01-28 | 1 | -2/+2 |
|
|
* | asyncio: Close the transport on subprocess creation failure | Victor Stinner | 2015-01-15 | 1 | -1/+5 |
|
|
* | Issue #23243: Fix asyncio._UnixWritePipeTransport.close() | Victor Stinner | 2015-01-15 | 1 | -1/+1 |
|
|
* | asyncio: sync with Tulip | Victor Stinner | 2015-01-14 | 1 | -2/+12 |
|
|
* | asyncio: sync with Tulip | Victor Stinner | 2015-01-09 | 1 | -4/+1 |
|
|
* | asyncio: Truncate to 80 columns | Victor Stinner | 2015-01-08 | 1 | -1/+2 |
|
|
* | asyncio, tulip issue 209: Fix subprocess for close_fds=False on Python 3.3 | Victor Stinner | 2014-12-11 | 1 | -0/+22 |
|
|
* | Closes #22922: More EventLoop methods fail if the loop is closed. Initial patch | Victor Stinner | 2014-12-04 | 1 | -0/+1 |
|
|
* | asyncio: Coroutine objects are now rejected with a TypeError by the following | Victor Stinner | 2014-11-20 | 1 | -2/+3 |
|
|
* | - Issue #22841: Reject coroutines in asyncio add_signal_handler(). | Guido van Rossum | 2014-11-14 | 1 | -0/+3 |
|
|
* | asyncio: Move loop attribute to _FlowControlMixin | Victor Stinner | 2014-11-05 | 1 | -2/+1 |
|
|
* | asyncio.unix_events: Move import statement to match tulip code | Yury Selivanov | 2014-09-25 | 1 | -1/+2 |
|
|
* | asyncio: sync with Tulip | Victor Stinner | 2014-08-25 | 1 | -3/+11 |
|
|
* | asyncio: Use the new os.set_blocking() function of Python 3.5 if available | Victor Stinner | 2014-07-29 | 1 | -4/+8 |
|
|
* | asyncio: sync with Tulip | Victor Stinner | 2014-07-23 | 1 | -3/+3 |
|
|
* | Python issue #21645, Tulip issue 192: Rewrite signal handling | Victor Stinner | 2014-07-17 | 1 | -2/+18 |
|
|
* | asyncio: sync with Tulip | Victor Stinner | 2014-07-14 | 1 | -1/+12 |
|
|
* | asyncio: sync with Tulip | Victor Stinner | 2014-07-12 | 1 | -0/+36 |
|
|
* | asyncion, Tulip issue 181: BaseEventLoop.create_datagram_endpoint() now waits | Victor Stinner | 2014-07-08 | 1 | -0/+2 |
|
|
* | Closes #21886, #21447: Fix a race condition in asyncio when setting the result | Victor Stinner | 2014-07-05 | 1 | -2/+2 |
|
|
* | asyncio: sync with Tulip | Victor Stinner | 2014-07-02 | 1 | -1/+1 |
|
|
* | asyncio: sync with Tulip, add a new asyncio.coroutines module | Victor Stinner | 2014-06-28 | 1 | -4/+4 |
|
|
* | asyncio, Tulip issue 171: BaseEventLoop.close() now raises an exception if the | Victor Stinner | 2014-06-22 | 1 | -1/+1 |
|
|
* | Tulip issue 83, Python issue #21252: Fill some XXX docstrings in asyncio | Victor Stinner | 2014-06-05 | 1 | -2/+2 |
|
|
* | Issue #21119: asyncio now closes sockets on errors | Victor Stinner | 2014-06-03 | 1 | -0/+3 |
|
|
* | Issue #21155: asyncio.EventLoop.create_unix_server() now raises a ValueError if | Victor Stinner | 2014-04-07 | 1 | -0/+4 |
|
|
* | asyncio: remove unused imports and unused variables noticed by pyflakes | Victor Stinner | 2014-02-20 | 1 | -1/+0 |
|
|
* | asyncio: Fix spelling and typos. | Yury Selivanov | 2014-02-19 | 1 | -2/+2 |
|
|
* | asyncio, Tulip issue 143: UNIX domain methods, fix ResourceWarning and | Victor Stinner | 2014-02-19 | 1 | -4/+4 |
|
|
* | asyncio, Tulip issue 139: Improve error messages on "fatal errors" | Victor Stinner | 2014-02-19 | 1 | -7/+7 |
|
|
* | asyncio.transports: Make _ProactorBasePipeTransport use _FlowControlMixin | Yury Selivanov | 2014-02-18 | 1 | -1/+1 |
|
|