1. 11 Haz, 2017 1 kayıt (commit)
  2. 11 May, 2017 1 kayıt (commit)
  3. 25 Nis, 2017 1 kayıt (commit)
  4. 21 Nis, 2017 1 kayıt (commit)
  5. 07 Şub, 2017 1 kayıt (commit)
  6. 28 Eki, 2016 1 kayıt (commit)
    • Yury Selivanov's avatar
      Issue #28544: Implement asyncio.Task in C. · a0c1ba60
      Yury Selivanov yazdı
      This implementation provides additional 10-20% speed boost for
      asyncio programs.
      
      The patch also fixes _asynciomodule.c to use Arguments Clinic, and
      makes '_schedule_callbacks' an overridable method (as it was in 3.5).
      a0c1ba60
  7. 21 Eki, 2016 1 kayıt (commit)
  8. 09 Eki, 2016 1 kayıt (commit)
  9. 30 Eyl, 2016 1 kayıt (commit)
  10. 15 Eyl, 2016 2 kayıt (commit)
  11. 09 Eyl, 2016 2 kayıt (commit)
    • Guido van Rossum's avatar
      Merge asyncio upstream. · 7b3b3dc8
      Guido van Rossum yazdı
      7b3b3dc8
    • Guido van Rossum's avatar
      Rename Future._blocking to _asyncio_future_blocking. · 1140a034
      Guido van Rossum yazdı
      This is now an official "protected" API that can be used to write
      classes that are duck-type-compatible with Future without subclassing
      it.  (For that purpose I also changed isinstance(result, Future) to
      check for this attribute instead.)
      
      Hopefully Amber Brown can use this to make Twisted.Deferred compatible
      with asyncio.Future.
      
      Tests and docs are TBD.
      1140a034
  12. 08 Haz, 2016 1 kayıt (commit)
  13. 16 May, 2016 1 kayıt (commit)
  14. 01 Nis, 2016 1 kayıt (commit)
  15. 11 Ock, 2016 2 kayıt (commit)
  16. 11 Ara, 2015 1 kayıt (commit)
  17. 20 Kas, 2015 1 kayıt (commit)
  18. 17 Kas, 2015 2 kayıt (commit)
  19. 16 Kas, 2015 1 kayıt (commit)
  20. 05 Kas, 2015 1 kayıt (commit)
  21. 05 Eki, 2015 1 kayıt (commit)
  22. 03 Eki, 2015 1 kayıt (commit)
  23. 02 Eki, 2015 1 kayıt (commit)
  24. 17 Agu, 2015 1 kayıt (commit)
  25. 14 Agu, 2015 1 kayıt (commit)
  26. 02 Agu, 2015 2 kayıt (commit)
  27. 25 Tem, 2015 2 kayıt (commit)
  28. 28 May, 2015 1 kayıt (commit)
  29. 12 May, 2015 1 kayıt (commit)
  30. 11 May, 2015 1 kayıt (commit)
  31. 29 Ock, 2015 1 kayıt (commit)
    • Victor Stinner's avatar
      asyncio: sync with Tulip · 2934262f
      Victor Stinner yazdı
      * Cleanup gather(): use cancelled() method instead of using private Future
        attribute
      * Fix _UnixReadPipeTransport and _UnixWritePipeTransport. Only start reading
        when connection_made() has been called.
      * Issue #23333: Fix BaseSelectorEventLoop._accept_connection(). Close the
        transport on error. In debug mode, log errors using call_exception_handler()
      2934262f
  32. 15 Ock, 2015 1 kayıt (commit)
  33. 09 Ock, 2015 1 kayıt (commit)
    • Victor Stinner's avatar
      asyncio: sync with Tulip · 3531d904
      Victor Stinner yazdı
      * Document why set_result() calls are safe
      * Cleanup gather(). Use public methods instead of hacks to consume the
        exception of a future.
      * sock_connect(): pass directly the fd to _sock_connect_done instead of the
        socket.
      3531d904
  34. 08 Ock, 2015 1 kayıt (commit)