1. 16 Jul, 2014 1 commit
  2. 15 Jul, 2014 1 commit
  3. 14 Jul, 2014 4 commits
  4. 13 Jul, 2014 4 commits
  5. 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
  6. 11 Jul, 2014 8 commits
  7. 10 Jul, 2014 5 commits
  8. 09 Jul, 2014 1 commit
  9. 08 Jul, 2014 4 commits
    • Victor Stinner's avatar
      asyncion, Tulip issue 181: BaseEventLoop.create_datagram_endpoint() now waits · bfff45d6
      Victor Stinner authored
      until protocol.connection_made() has been called. Document also why transport
      constructors use a waiter.
      bfff45d6
    • Victor Stinner's avatar
      aea82293
    • Victor Stinner's avatar
      Update asyncio documentation · 530ef2f0
      Victor Stinner authored
      - Document the new create_task() method
      - "Hide" the Task class: point to the create_task() method for interoperability
      - Rewrite the documentation of the Task class
      - Document the "Pending task destroyed"
      - Update output in debug mode of examples in the dev section
      - Replace Task() with create_task() in examples
      530ef2f0
    • Victor Stinner's avatar
      asyncio: sync with Tulip · 896a25ab
      Victor Stinner authored
      - Tulip issue 185: Add a create_task() method to event loops. The create_task()
        method can be overriden in custom event loop to implement their own task
        class. For example, greenio and Pulsar projects use their own task class. The
        create_task() method is now preferred over creating directly task using the
        Task class.
      - tests: fix a warning
      - fix typo in the name of a test function
      - Update AbstractEventLoop: add new event loop methods; update also the unit test
      896a25ab
  10. 07 Jul, 2014 9 commits