1. 19 Jul, 2014 1 commit
  2. 18 Jul, 2014 2 commits
  3. 17 Jul, 2014 6 commits
  4. 16 Jul, 2014 9 commits
  5. 15 Jul, 2014 1 commit
  6. 14 Jul, 2014 4 commits
  7. 13 Jul, 2014 4 commits
  8. 12 Jul, 2014 3 commits
    • Berker Peksag's avatar
    • Victor Stinner's avatar
      4bfb14ac
    • Victor Stinner's avatar
      asyncio: sync with Tulip · e912e652
      Victor Stinner authored
      * Tulip issue #183: log socket events in debug mode
      
        - Log most important socket events: socket connected, new client, connection
          reset or closed by peer (EOF), etc.
        - Log time elapsed in DNS resolution (getaddrinfo)
        - Log pause/resume reading
        - Log time of SSL handshake
        - Log SSL handshake errors
        - Add a __repr__() method to many classes
      
      * Fix ProactorEventLoop() in debug mode. ProactorEventLoop._make_self_pipe()
        doesn't call call_soon() directly because it checks for the current loop
        which fails, because the method is called to build the event loop.
      
      * Cleanup _ProactorReadPipeTransport constructor. Not need to set again
        _read_fut attribute to None, it is already done in the base class.
      e912e652
  9. 11 Jul, 2014 8 commits
  10. 10 Jul, 2014 2 commits
    • Victor Stinner's avatar
      asyncio: sync with Tulip · 737c34fa
      Victor Stinner authored
      - CoroWrapper.__del__() now reuses repr(CoroWrapper) to log the "... was never
        yielded from" warning
      - Improve CoroWrapper: copy also the qualified name on Python 3.4, not only on
        Python 3.5+
      737c34fa
    • Victor Stinner's avatar
      asyncio: sync with Tulip · c39ba7d6
      Victor Stinner authored
      - repr(Task) and repr(CoroWrapper) now also includes where these objects were
        created. If the coroutine is not a generator (don't use "yield from"), use
        the location of the function, not the location of the coro() wrapper.
      - Fix create_task(): truncate the traceback to hide the call to create_task().
      c39ba7d6