• Victor Stinner's avatar
    (Merge 3.4) asyncio: sync with Tulip · 83b9ea49
    Victor Stinner yazdı
    * PipeServer.close() now cancels the "accept pipe" future which cancels the
      overlapped operation.
    * Fix _SelectorTransport.__repr__() if the transport was closed
    * Fix debug log in BaseEventLoop.create_connection(): get the socket object
      from the transport because SSL transport closes the old socket and creates a
      new SSL socket object. Remove also the _SelectorSslTransport._rawsock
      attribute: it contained the closed socket (not very useful) and it was not
      used.
    * Issue #22063: socket operations (sock_recv, sock_sendall, sock_connect,
      sock_accept) of the proactor event loop don't raise an exception in debug
      mode if the socket are in blocking mode. Overlapped operations also work on
      blocking sockets.
    * Fix unit tests in debug mode: mock a non-blocking socket for socket
      operations which now raise an exception if the socket is blocking.
    * _fatal_error() method of _UnixReadPipeTransport and _UnixWritePipeTransport
      now log all exceptions in debug mode
    * Don't log expected errors in unit tests
    * Tulip issue 200: _WaitHandleFuture._unregister_wait() now catchs and logs
      exceptions.
    * Tulip issue 200: Log errors in debug mode instead of simply ignoring them.
    83b9ea49
Adı
Son kayıt (commit)
Son güncelleme
..
__init__.py Loading commit data...
__main__.py Loading commit data...
echo.py Loading commit data...
echo2.py Loading commit data...
echo3.py Loading commit data...
keycert3.pem Loading commit data...
pycacert.pem Loading commit data...
ssl_cert.pem Loading commit data...
ssl_key.pem Loading commit data...
test_base_events.py Loading commit data...
test_events.py Loading commit data...
test_futures.py Loading commit data...
test_locks.py Loading commit data...
test_proactor_events.py Loading commit data...
test_queues.py Loading commit data...
test_selector_events.py Loading commit data...
test_streams.py Loading commit data...
test_subprocess.py Loading commit data...
test_tasks.py Loading commit data...
test_transports.py Loading commit data...
test_unix_events.py Loading commit data...
test_windows_events.py Loading commit data...
test_windows_utils.py Loading commit data...