1. 31 Agu, 2014 3 kayıt (commit)
  2. 30 Agu, 2014 1 kayıt (commit)
    • R David Murray's avatar
      #22215: have the smtplib 'quit' command reset the state. · 0cff49fc
      R David Murray yazdı
      Without this reset, starttls would fail if a connect/starttls was done after a
      quit, because smtplib assumed the existing value of emspt_features was
      accurate, but it gets reset when starttls completes (and the new value does
      not contain the starttls capability, since tls is already started at that
      point).  (There may be additional places where this lack of reset was an
      issue as well.)
      
      Patch by Milan Oberkirch.
      0cff49fc
  3. 29 Agu, 2014 2 kayıt (commit)
  4. 28 Agu, 2014 1 kayıt (commit)
  5. 27 Agu, 2014 3 kayıt (commit)
  6. 26 Agu, 2014 2 kayıt (commit)
  7. 25 Agu, 2014 4 kayıt (commit)
    • Victor Stinner's avatar
      Issue #22063: Fix asyncio documentation of socket and pipe operations regarding · d84fd73d
      Victor Stinner yazdı
      to non-blocking mode. The non-blocking mode does not matter when using a
      ProactorEventLoop, only for SelectorEventLoop.
      d84fd73d
    • Victor Stinner's avatar
    • Victor Stinner's avatar
      asyncio: sync with Tulip · b261475a
      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.
      b261475a
    • Victor Stinner's avatar
      asyncio: update the doc · d71dcbb0
      Victor Stinner yazdı
      * dev: mention that the logging must be configured at DEBUG level
      * streams: drain() has no more a strange return value, it's just
        a standard coroutine
      d71dcbb0
  8. 24 Agu, 2014 6 kayıt (commit)
  9. 23 Agu, 2014 4 kayıt (commit)
  10. 22 Agu, 2014 6 kayıt (commit)
  11. 20 Agu, 2014 1 kayıt (commit)
  12. 19 Agu, 2014 4 kayıt (commit)
  13. 18 Agu, 2014 2 kayıt (commit)
  14. 17 Agu, 2014 1 kayıt (commit)