1. 18 Jan, 2015 1 commit
  2. 17 Jan, 2015 2 commits
  3. 15 Jan, 2015 22 commits
  4. 14 Jan, 2015 4 commits
    • Victor Stinner's avatar
      asyncio: sync with Tulip · 29ad0111
      Victor Stinner authored
      * PipeHandle now uses None instead of -1 for a closed handle
      * Sort imports in windows_utils.
      * Fix test_events on Python older than 3.5. Skip SSL tests on the
        ProactorEventLoop if ssl.MemoryIO is missing
      * Fix BaseEventLoop._create_connection_transport(). Close the transport if the
        creation of the transport (if the waiter) gets an exception.
      * _ProactorBasePipeTransport now sets _sock to None when the transport is
        closed.
      * Fix BaseSubprocessTransport.close(). Ignore pipes for which the protocol is
        not set yet (still equal to None).
      * TestLoop.close() now calls the close() method of the parent class
        (BaseEventLoop).
      * Cleanup BaseSelectorEventLoop: create the protocol on a separated line for
        readability and ease debugging.
      * Fix BaseSubprocessTransport._kill_wait(). Set the _returncode attribute, so
        close() doesn't try to terminate the process.
      * Tests: explicitly close event loops and transports
      * UNIX pipe transports: add closed/closing in repr(). Add "closed" or "closing"
        state in the __repr__() method of _UnixReadPipeTransport and
        _UnixWritePipeTransport classes.
      29ad0111
    • Victor Stinner's avatar
      Issue #23197: On SSL handshake failure on matching hostname, check if the · b92626df
      Victor Stinner authored
      waiter is cancelled before setting its exception.
      b92626df
    • Victor Stinner's avatar
      Issue #23197, asyncio: On SSL handshake failure, check if the waiter is · 177e9f08
      Victor Stinner authored
      cancelled before setting its exception.
      
      * Add unit tests for this case.
      * Cleanup also sslproto.py
      177e9f08
    • Victor Stinner's avatar
      Python issue #23173: sync with Tulip · f651a604
      Victor Stinner authored
      * If an exception is raised during the creation of a subprocess, kill the
        subprocess (close pipes, kill and read the return status). Log an error in
        such case.
      * Fix SubprocessStreamProtocol.connection_made() to handle cancelled waiter.
        Add unit test cancelling subprocess methods.
      f651a604
  5. 13 Jan, 2015 6 commits
  6. 11 Jan, 2015 3 commits
  7. 09 Jan, 2015 2 commits