- 24 Ock, 2018 1 kayıt (commit)
-
-
Yury Selivanov yazdı
Specifically, it's not possible to subclass Task/Future classes and override the following methods: * Future._schedule_callbacks * Task._step * Task._wakeup
-
- 23 Ock, 2018 1 kayıt (commit)
-
-
Yury Selivanov yazdı
-
- 25 Ara, 2017 1 kayıt (commit)
-
-
Yury Selivanov yazdı
-
- 23 Ara, 2017 1 kayıt (commit)
-
-
Yury Selivanov yazdı
-
- 19 Ara, 2017 1 kayıt (commit)
-
-
Yury Selivanov yazdı
-
- 17 Ara, 2017 1 kayıt (commit)
-
-
Andrew Svetlov yazdı
* Use fastpath in asyncio.sleep if delay<0 * Add NEWS entry
-
- 16 Ara, 2017 1 kayıt (commit)
-
-
Andrew Svetlov yazdı
-
- 15 Ara, 2017 1 kayıt (commit)
-
-
Andrew Svetlov yazdı
* Implement functionality * Add documentation
-
- 11 Ara, 2017 1 kayıt (commit)
-
-
Yury Selivanov yazdı
-
- 10 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
-
- 28 Kas, 2017 1 kayıt (commit)
-
-
Victor Stinner yazdı
The asyncio/compat.py file was written to support Python < 3.5 and Python < 3.5.2. But Python 3.5 doesn't accept bugfixes anymore, only security fixes. There is no more need to backport bugfixes to Python 3.5, and so no need to have a single code base for Python 3.5, 3.6 and 3.7. Say hello (again) to "async" and "await", who became real keywords in Python 3.7 ;-)
-
- 05 Eki, 2017 1 kayıt (commit)
-
-
Victor K yazdı
-
- 11 Haz, 2017 1 kayıt (commit)
-
-
Yury Selivanov yazdı
-
- 11 May, 2017 1 kayıt (commit)
-
-
INADA Naoki yazdı
when there are no more `await` or `yield (from)` before return in coroutine, cancel was ignored. example: async def coro(): asyncio.Task.current_task().cancel() return 42 ... res = await coro() # should raise CancelledError
-
- 25 Nis, 2017 1 kayıt (commit)
-
-
INADA Naoki yazdı
-
- 21 Nis, 2017 1 kayıt (commit)
-
-
Charles Renwick yazdı
-
- 07 Şub, 2017 1 kayıt (commit)
-
-
Mariatta Wijaya yazdı
-
- 28 Eki, 2016 1 kayıt (commit)
-
-
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).
-
- 21 Eki, 2016 1 kayıt (commit)
-
-
Yury Selivanov yazdı
Patch by Johannes Ebke.
-
- 09 Eki, 2016 1 kayıt (commit)
-
-
Yury Selivanov yazdı
-
- 30 Eyl, 2016 1 kayıt (commit)
-
-
Guido van Rossum yazdı
-
- 15 Eyl, 2016 2 kayıt (commit)
-
-
Yury Selivanov yazdı
-
Yury Selivanov yazdı
-
- 09 Eyl, 2016 2 kayıt (commit)
-
-
Guido van Rossum yazdı
-
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.
-
- 08 Haz, 2016 1 kayıt (commit)
-
-
Yury Selivanov yazdı
It will probably be added back in Python 3.6, once its compatibility issues are resolved; see [1] for more details. [1] https://mail.python.org/pipermail/async-sig/2016-June/000045.html
-
- 16 May, 2016 1 kayıt (commit)
-
-
Yury Selivanov yazdı
-
- 01 Nis, 2016 1 kayıt (commit)
-
-
Victor Stinner yazdı
Fix GH#325: Allow to pass None as a timeout value to disable timeout logic. Change written by Andrew Svetlov and merged by Guido van Rossum.
-
- 11 Ock, 2016 2 kayıt (commit)
-
-
Andrew Svetlov yazdı
-
Andrew Svetlov yazdı
-
- 11 Ara, 2015 1 kayıt (commit)
-
-
Yury Selivanov yazdı
See https://github.com/python/asyncio/pull/303 for details
-
- 20 Kas, 2015 1 kayıt (commit)
-
-
Yury Selivanov yazdı
-
- 17 Kas, 2015 2 kayıt (commit)
-
-
Yury Selivanov yazdı
See https://github.com/python/asyncio/pull/292 for details.
-
Yury Selivanov yazdı
-
- 16 Kas, 2015 1 kayıt (commit)
-
-
Yury Selivanov yazdı
See https://github.com/python/asyncio/pull/289 for details.
-
- 05 Kas, 2015 1 kayıt (commit)
-
-
Yury Selivanov yazdı
-
- 05 Eki, 2015 1 kayıt (commit)
-
-
Guido van Rossum yazdı
-
- 03 Eki, 2015 1 kayıt (commit)
-
-
Guido van Rossum yazdı
-
- 02 Eki, 2015 1 kayıt (commit)
-
-
Yury Selivanov yazdı
-