1. 04 Jan, 2015 1 commit
  2. 03 Jan, 2015 2 commits
  3. 01 Jan, 2015 4 commits
  4. 30 Dec, 2014 5 commits
  5. 29 Dec, 2014 1 commit
  6. 28 Dec, 2014 1 commit
  7. 26 Dec, 2014 2 commits
    • Victor Stinner's avatar
      Issue #22926: In debug mode, call_soon(), call_at() and call_later() methods of · cc5fe369
      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.
      cc5fe369
    • Victor Stinner's avatar
      asyncio: sync with Tulip · f8418a0c
      Victor Stinner authored
      * Fix pyflakes warnings: remove unused imports and variables
      * asyncio.test_support now uses test.support and test.script_helper if available
      f8418a0c
  8. 21 Dec, 2014 1 commit
  9. 26 Dec, 2014 1 commit
  10. 25 Dec, 2014 1 commit
  11. 24 Dec, 2014 3 commits
  12. 23 Dec, 2014 1 commit
  13. 22 Dec, 2014 3 commits
  14. 20 Dec, 2014 3 commits
  15. 19 Dec, 2014 3 commits
  16. 18 Dec, 2014 3 commits
    • Victor Stinner's avatar
      asyncio: sync with Tulip · 31da4315
      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
      31da4315
    • Victor Stinner's avatar
      asyncio: sync with Tulip · d8a2d75a
      Victor Stinner authored
      d8a2d75a
    • Victor Stinner's avatar
      Issue #23074: asyncio.get_event_loop() now raises an exception if the thread · dff40045
      Victor Stinner authored
      has no event loop even if assertions are disabled.
      dff40045
  17. 17 Dec, 2014 2 commits
  18. 16 Dec, 2014 3 commits