1. 03 Jan, 2015 1 commit
  2. 01 Jan, 2015 4 commits
  3. 30 Dec, 2014 5 commits
  4. 29 Dec, 2014 1 commit
  5. 28 Dec, 2014 1 commit
  6. 26 Dec, 2014 2 commits
    • Victor Stinner's avatar
      Issue #22926: In debug mode, call_soon(), call_at() and call_later() methods of · 956de691
      Victor Stinner authored
      asyncio.BaseEventLoop now use the identifier of the current thread to ensure
      that they are called from the thread running the event loop.
      
      Before, the get_event_loop() method was used to check the thread, and no
      exception was raised when the thread had no event loop. Now the methods always
      raise an exception in debug mode when called from the wrong thread. It should
      help to notice misusage of the API.
      956de691
    • Victor Stinner's avatar
      asyncio: sync with Tulip · d7ff5a53
      Victor Stinner authored
      * Fix pyflakes warnings: remove unused imports and variables
      * asyncio.test_support now uses test.support and test.script_helper if available
      d7ff5a53
  7. 21 Dec, 2014 1 commit
  8. 26 Dec, 2014 1 commit
  9. 25 Dec, 2014 1 commit
  10. 24 Dec, 2014 3 commits
  11. 23 Dec, 2014 1 commit
  12. 22 Dec, 2014 3 commits
  13. 20 Dec, 2014 3 commits
  14. 19 Dec, 2014 3 commits
  15. 18 Dec, 2014 3 commits
    • Victor Stinner's avatar
      asyncio: sync with Tulip · 1b9763d0
      Victor Stinner authored
      * Fix a race condition in BaseSubprocessTransport._try_finish().
      
        If the process exited before the _post_init() method was called, scheduling
        the call to _call_connection_lost() with call_soon() is wrong:
        connection_made() must be called before connection_lost().
      
        Reuse the BaseSubprocessTransport._call() method to schedule the call to
        _call_connection_lost() to ensure that connection_made() and
        connection_lost() are called in the correct order.
      
      * Add repr(PipeHandle)
      
      * Fix typo
      1b9763d0
    • Victor Stinner's avatar
      asyncio: sync with Tulip · dc7765d1
      Victor Stinner authored
      dc7765d1
    • Victor Stinner's avatar
      Issue #23074: asyncio.get_event_loop() now raises an exception if the thread · 3a1c738e
      Victor Stinner authored
      has no event loop even if assertions are disabled.
      3a1c738e
  16. 17 Dec, 2014 2 commits
  17. 16 Dec, 2014 3 commits
  18. 15 Dec, 2014 2 commits