1. 02 Haz, 2018 1 kayıt (commit)
  2. 11 Ara, 2017 1 kayıt (commit)
  3. 28 Kas, 2017 2 kayıt (commit)
    • Victor Stinner's avatar
    • Victor Stinner's avatar
      bpo-32154: Remove asyncio.selectors (#4605) · 4271dfd7
      Victor Stinner yazdı
      * Remove asyncio.selectors and asyncio._overlapped symbols from the
        namespace of the asyncio module
      * Replace "from asyncio import selectors" with "import selectors"
      * Replace "from asyncio import _overlapped" with "import _overlapped"
      
      asyncio.selectors was added to support Python 3.3, which doesn't have
      selectors in its standard library, and Python 3.4 in the same code
      base. Same rationale for asyncio._overlapped. Python 3.3 reached its
      end of life, and asyncio is no more maintained as a third party
      module on PyPI.
      4271dfd7
  4. 15 Ock, 2015 1 kayıt (commit)
    • Victor Stinner's avatar
      asyncio: Close transports in tests · ab8848bc
      Victor Stinner yazdı
      * Use test_utils.run_briefly() to execute pending calls to really close
        transports
      * sslproto: mock also _SSLPipe.shutdown(), it's need to close the transport
      * pipe test: the test doesn't close explicitly the PipeHandle, so ignore
        the warning instead
      * test_popen: use the context manager ("with p:") to explicitly close pipes
      ab8848bc
  5. 26 Ara, 2014 1 kayıt (commit)
    • Victor Stinner's avatar
      asyncio: sync with Tulip · d7ff5a53
      Victor Stinner yazdı
      * Fix pyflakes warnings: remove unused imports and variables
      * asyncio.test_support now uses test.support and test.script_helper if available
      d7ff5a53
  6. 18 Ara, 2014 1 kayıt (commit)
  7. 14 Eki, 2014 1 kayıt (commit)
  8. 03 Haz, 2014 2 kayıt (commit)
  9. 05 Mar, 2014 1 kayıt (commit)
    • Victor Stinner's avatar
      asyncio: Synchronize with Tulip · eeeebcd8
      Victor Stinner yazdı
      * Issue #159: Fix windows_utils.socketpair()
      
        - Use "127.0.0.1" (IPv4) or "::1" (IPv6) host instead of "localhost", because
          "localhost" may be a different IP address
        - Reject also invalid arguments: only AF_INET/AF_INET6 with SOCK_STREAM (and
          proto=0) are supported
      
      * Reject add/remove reader/writer when event loop is closed.
      * Fix ResourceWarning warnings
      eeeebcd8
  10. 26 Şub, 2014 1 kayıt (commit)
  11. 15 Kas, 2013 1 kayıt (commit)
  12. 30 Eki, 2013 1 kayıt (commit)
  13. 20 Eki, 2013 1 kayıt (commit)
  14. 17 Eki, 2013 2 kayıt (commit)