1. 08 Jul, 2014 8 commits
    • Victor Stinner's avatar
      (Merge 3.4) asyncion, Tulip issue 181: BaseEventLoop.create_datagram_endpoint() · b44fc326
      Victor Stinner authored
      now waits until protocol.connection_made() has been called. Document also why
      transport constructors use a waiter.
      b44fc326
    • 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
      5f40168b
    • Victor Stinner's avatar
      aea82293
    • Zachary Ware's avatar
      Issue #21907: Make the buildbot clean script always return 0. · afb52e1d
      Zachary Ware authored
      The clean script is a "best effort" thing anyway, and this will hopefully
      revive the XP buildbot.
      afb52e1d
    • Victor Stinner's avatar
      Merge 3.4 · 4532c43e
      Victor Stinner authored
      asyncio: sync with Tulip
      
      - 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
      
      Update asyncio documentation
      
      - 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
      4532c43e
    • 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
  2. 07 Jul, 2014 32 commits