- 02 Haz, 2018 1 kayıt (commit)
-
-
Brett Cannon yazdı
-
- 30 May, 2018 2 kayıt (commit)
-
-
Yury Selivanov yazdı
This reverts commit ad74d505. Turns out it's not a good fix -- Travis has just crashed on this test.
-
Yury Selivanov yazdı
-
- 29 May, 2018 1 kayıt (commit)
-
-
Yury Selivanov yazdı
-
- 20 May, 2018 1 kayıt (commit)
-
-
Christian Heimes yazdı
Fix typo from commit 6370f345Signed-off-by:
Christian 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 -->
-
- 11 Ara, 2017 1 kayıt (commit)
-
-
Yury Selivanov yazdı
-
- 08 Ara, 2017 1 kayıt (commit)
-
-
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
-
- 25 Tem, 2017 1 kayıt (commit)
-
-
Victor Stinner yazdı
* bpo-31034: Reliable signal handler for test_asyncio Don't rely on the current SIGHUP signal handler, make sure that it's set to the "default" signal handler: SIG_DFL. * Add comments
-
- 03 Mar, 2017 2 kayıt (commit)
-
-
Yury Selivanov yazdı
-
Seth M. Larson yazdı
-
- 04 Kas, 2016 1 kayıt (commit)
-
-
Yury Selivanov yazdı
when called from coroutines or callbacks.
-
- 05 Eki, 2016 1 kayıt (commit)
-
-
Yury Selivanov yazdı
Patch by Vincent Michel.
-
- 26 May, 2016 1 kayıt (commit)
-
-
Martin Panter yazdı
Most fixes to Doc/ and Lib/ directories by Ville Skyttä.
-
- 13 May, 2016 1 kayıt (commit)
-
-
Yury Selivanov yazdı
-
- 02 Mar, 2016 1 kayıt (commit)
-
-
Yury Selivanov yazdı
-
- 11 Şub, 2016 1 kayıt (commit)
-
-
Serhiy Storchaka yazdı
no ResourceWarning is emitted.
-
- 16 Kas, 2015 1 kayıt (commit)
-
-
Yury Selivanov yazdı
See https://github.com/python/asyncio/pull/291 for details.
-
- 09 Agu, 2015 1 kayıt (commit)
-
-
Yury Selivanov yazdı
See also issue #24835
-
- 04 Agu, 2015 1 kayıt (commit)
-
-
Yury Selivanov yazdı
-
- 31 Tem, 2015 2 kayıt (commit)
-
-
Victor Stinner yazdı
-
Victor Stinner yazdı
Issue #24763: Fix resource warnings when asyncio.BaseSubprocessTransport constructor fails, if subprocess.Popen raises an exception for example. Patch written by Martin Richard, test written by me.
-
- 09 Tem, 2015 1 kayıt (commit)
-
-
Victor Stinner yazdı
* queues: get coroutine from asyncio.coroutines, not from asyncio.tasks * tets: replace tulip with asyncio in comments
-
- 17 Şub, 2015 2 kayıt (commit)
-
-
Victor Stinner yazdı
Read process exit status to avoid the "Caught subprocess termination from unknown pid" message.
-
Victor Stinner yazdı
Really kill the child process, don't mock completly the Popen.kill() method. This change fix memory leaks and reference leaks.
-
- 10 Şub, 2015 1 kayıt (commit)
-
-
Victor Stinner yazdı
already finished
-
- 30 Ock, 2015 1 kayıt (commit)
-
-
Victor Stinner yazdı
transport was closed. The check broken a Tulip example and this limitation is arbitrary. Check if _proc is None should be enough. Enhance also close(): do nothing when called the second time.
-
- 29 Ock, 2015 2 kayıt (commit)
-
-
Victor Stinner yazdı
-
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.
-
- 15 Ock, 2015 2 kayıt (commit)
-
-
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.
-
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
-
- 14 Ock, 2015 1 kayıt (commit)
-
-
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.
-
- 08 Ock, 2015 1 kayıt (commit)
-
-
Victor Stinner yazdı
-
- 06 Ock, 2015 2 kayıt (commit)
-
-
Victor Stinner yazdı
-
Victor Stinner yazdı
the waiter future before setting its result.
-
- 26 Ara, 2014 2 kayıt (commit)
-
-
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.
-
Victor Stinner yazdı
* Fix pyflakes warnings: remove unused imports and variables * asyncio.test_support now uses test.support and test.script_helper if available
-
- 18 Ara, 2014 1 kayıt (commit)
-
-
Victor Stinner yazdı
-
- 11 Ara, 2014 1 kayıt (commit)
-
-
Victor Stinner yazdı
Mark the write end of the stdin pipe as non-inheritable.
-
- 04 Ara, 2014 1 kayıt (commit)
-
-
Victor Stinner yazdı
* mock also resume_reading() * ensure that resume_reading() is called
-
- 28 Kas, 2014 1 kayıt (commit)
-
-
Victor Stinner yazdı
-