1. 05 Jan, 2015 3 commits
  2. 04 Jan, 2015 5 commits
  3. 03 Jan, 2015 2 commits
  4. 01 Jan, 2015 4 commits
  5. 30 Dec, 2014 5 commits
  6. 29 Dec, 2014 1 commit
  7. 28 Dec, 2014 1 commit
  8. 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
  9. 21 Dec, 2014 1 commit
  10. 26 Dec, 2014 1 commit
  11. 25 Dec, 2014 1 commit
  12. 24 Dec, 2014 3 commits
  13. 23 Dec, 2014 1 commit
  14. 22 Dec, 2014 3 commits
  15. 20 Dec, 2014 3 commits
  16. 19 Dec, 2014 3 commits
  17. 18 Dec, 2014 1 commit
    • 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