1. 02 Haz, 2018 1 kayıt (commit)
  2. 30 May, 2018 2 kayıt (commit)
  3. 29 May, 2018 1 kayıt (commit)
  4. 20 May, 2018 1 kayıt (commit)
    • Christian Heimes's avatar
      bpo-32262: Fix typo in f-string (GH-7016) · d361e998
      Christian Heimes yazdı
      Fix typo from commit 6370f345Signed-off-by: 's avatarChristian Heimes <christian@python.org>
      
      <!--
      Thanks for your contribution!
      Please read this comment in its entirety. It's quite important.
      
      # Pull Request title
      
      It should be in the following format:
      
      ```
      bpo-NNNN: Summary of the changes made
      ```
      
      Where: bpo-NNNN refers to the issue number in the https://bugs.python.org.
      
      Most PRs will require an issue number. Trivial changes, like fixing a typo, do not need an issue.
      
      # Backport Pull Request title
      
      If this is a backport PR (PR made against branches other than `master`),
      please ensure that the PR title is in the following format:
      
      ```
      [X.Y] <title from the original PR> (GH-NNNN)
      ```
      
      Where: [X.Y] is the branch name, e.g. [3.6].
      
      GH-NNNN refers to the PR number from `master`.
      
      -->
      
      
      <!-- issue-number: bpo-32262 -->
      https://bugs.python.org/issue32262
      <!-- /issue-number -->
      d361e998
  5. 11 Ara, 2017 1 kayıt (commit)
  6. 08 Ara, 2017 1 kayıt (commit)
    • Andrew Svetlov's avatar
      bpo-32193: Convert asyncio to async/await usage (#4753) · 5f841b55
      Andrew Svetlov yazdı
      * Convert asyncio/tasks.py to async/await
      
      * Convert asyncio/queues.py to async/await
      
      * Convert asyncio/test_utils.py to async/await
      
      * Convert asyncio/base_subprocess.py to async/await
      
      * Convert asyncio/subprocess.py to async/await
      
      * Convert asyncio/streams.py to async/await
      
      * Fix comments
      
      * Convert asyncio/locks.py to async/await
      
      * Convert asyncio.sleep to async def
      
      * Add a comment
      
      * Add missing news
      
      * Convert stubs from AbstrctEventLoop to async functions
      
      * Convert subprocess_shell/subprocess_exec
      
      * Convert connect_read_pipe/connect_write_pip to async/await syntax
      
      * Convert create_datagram_endpoint
      
      * Convert create_unix_server/create_unix_connection
      
      * Get rid of old style coroutines in unix_events.py
      
      * Convert selector_events.py to async/await
      
      * Convert wait_closed and create_connection
      
      * Drop redundant line
      
      * Convert base_events.py
      
      * Code cleanup
      
      * Drop redundant comments
      
      * Fix indentation
      
      * Add explicit tests for compatibility between old and new coroutines
      
      * Convert windows event loop to use async/await
      
      * Fix double awaiting of async function
      
      * Convert asyncio/locks.py
      
      * Improve docstring
      
      * Convert tests to async/await
      
      * Convert more tests
      
      * Convert more tests
      
      * Convert more tests
      
      * Convert tests
      
      * Improve test
      5f841b55
  7. 25 Tem, 2017 1 kayıt (commit)
  8. 03 Mar, 2017 2 kayıt (commit)
  9. 04 Kas, 2016 1 kayıt (commit)
  10. 05 Eki, 2016 1 kayıt (commit)
  11. 26 May, 2016 1 kayıt (commit)
  12. 13 May, 2016 1 kayıt (commit)
  13. 02 Mar, 2016 1 kayıt (commit)
  14. 11 Şub, 2016 1 kayıt (commit)
  15. 16 Kas, 2015 1 kayıt (commit)
  16. 09 Agu, 2015 1 kayıt (commit)
  17. 04 Agu, 2015 1 kayıt (commit)
  18. 31 Tem, 2015 2 kayıt (commit)
  19. 09 Tem, 2015 1 kayıt (commit)
  20. 17 Şub, 2015 2 kayıt (commit)
  21. 10 Şub, 2015 1 kayıt (commit)
  22. 30 Ock, 2015 1 kayıt (commit)
  23. 29 Ock, 2015 2 kayıt (commit)
    • Victor Stinner's avatar
    • Victor Stinner's avatar
      asyncio: sync with Tulip · 47cd10d7
      Victor Stinner yazdı
      Issue #23347: send_signal(), kill() and terminate() methods of
      BaseSubprocessTransport now check if the transport was closed and if the
      process exited.
      
      Issue #23347: Refactor creation of subprocess transports. Changes on
      BaseSubprocessTransport:
      
      * Add a wait() method to wait until the child process exit
      * The constructor now accepts an optional waiter parameter. The _post_init()
        coroutine must not be called explicitly anymore. It makes subprocess
        transports closer to other transports, and it gives more freedom if we want
        later to change completly how subprocess transports are created.
      * close() now kills the process instead of kindly terminate it: the child
        process may ignore SIGTERM and continue to run. Call explicitly terminate()
        and wait() if you want to kindly terminate the child process.
      * close() now logs a warning in debug mode if the process is still running and
        needs to be killed
      * _make_subprocess_transport() is now fully asynchronous again: if the creation
        of the transport failed, wait asynchronously for the process eixt. Before the
        wait was synchronous. This change requires close() to *kill*, and not
        terminate, the child process.
      * Remove the _kill_wait() method, replaced with a more agressive close()
        method. It fixes _make_subprocess_transport() on error.
        BaseSubprocessTransport.close() calls the close() method of pipe transports,
        whereas _kill_wait() closed directly pipes of the subprocess.Popen object
        without unregistering file descriptors from the selector (which caused severe
        bugs).
      
      These changes simplifies the code of subprocess.py.
      47cd10d7
  24. 15 Ock, 2015 2 kayıt (commit)
    • Victor Stinner's avatar
      Issue #22685: Fix test_pause_reading() of asyncio/test_subprocess · f716d8b7
      Victor Stinner yazdı
      Override the connect_read_pipe() method of the loop to mock immediatly
      pause_reading() and resume_reading() methods.
      
      The test failed randomly on FreeBSD 9 buildbot and on Windows using trollius.
      f716d8b7
    • 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
  25. 14 Ock, 2015 1 kayıt (commit)
    • Victor Stinner's avatar
      Python issue #23173: sync with Tulip · f651a604
      Victor Stinner yazdı
      * If an exception is raised during the creation of a subprocess, kill the
        subprocess (close pipes, kill and read the return status). Log an error in
        such case.
      * Fix SubprocessStreamProtocol.connection_made() to handle cancelled waiter.
        Add unit test cancelling subprocess methods.
      f651a604
  26. 08 Ock, 2015 1 kayıt (commit)
  27. 06 Ock, 2015 2 kayıt (commit)
  28. 26 Ara, 2014 2 kayıt (commit)
    • Victor Stinner's avatar
      Issue #22926: In debug mode, call_soon(), call_at() and call_later() methods of · 956de691
      Victor Stinner yazdı
      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 yazdı
      * Fix pyflakes warnings: remove unused imports and variables
      * asyncio.test_support now uses test.support and test.script_helper if available
      d7ff5a53
  29. 18 Ara, 2014 1 kayıt (commit)
  30. 11 Ara, 2014 1 kayıt (commit)
  31. 04 Ara, 2014 1 kayıt (commit)
  32. 28 Kas, 2014 1 kayıt (commit)