- 09 Eyl, 2016 1 kayıt (commit)
-
-
Guido van Rossum yazdı
-
- 16 May, 2016 1 kayıt (commit)
-
-
Yury Selivanov yazdı
-
- 13 May, 2016 1 kayıt (commit)
-
-
Yury Selivanov yazdı
Patch by Philip Jenvey
-
- 02 Mar, 2016 1 kayıt (commit)
-
-
Yury Selivanov yazdı
Patch by Chris Angelico (issue #26221)
-
- 17 Kas, 2015 1 kayıt (commit)
-
-
Yury Selivanov yazdı
See https://github.com/python/asyncio/pull/292 for details.
-
- 03 Eki, 2015 1 kayıt (commit)
-
-
Guido van Rossum yazdı
-
- 14 Ock, 2015 1 kayıt (commit)
-
-
Victor Stinner yazdı
* PipeHandle now uses None instead of -1 for a closed handle * Sort imports in windows_utils. * Fix test_events on Python older than 3.5. Skip SSL tests on the ProactorEventLoop if ssl.MemoryIO is missing * Fix BaseEventLoop._create_connection_transport(). Close the transport if the creation of the transport (if the waiter) gets an exception. * _ProactorBasePipeTransport now sets _sock to None when the transport is closed. * Fix BaseSubprocessTransport.close(). Ignore pipes for which the protocol is not set yet (still equal to None). * TestLoop.close() now calls the close() method of the parent class (BaseEventLoop). * Cleanup BaseSelectorEventLoop: create the protocol on a separated line for readability and ease debugging. * Fix BaseSubprocessTransport._kill_wait(). Set the _returncode attribute, so close() doesn't try to terminate the process. * Tests: explicitly close event loops and transports * UNIX pipe transports: add closed/closing in repr(). Add "closed" or "closing" state in the __repr__() method of _UnixReadPipeTransport and _UnixWritePipeTransport classes.
-
- 08 Ock, 2015 1 kayıt (commit)
-
-
Victor Stinner yazdı
-
- 26 Ara, 2014 1 kayıt (commit)
-
-
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ı
-
- 20 Kas, 2014 1 kayıt (commit)
-
-
Victor Stinner yazdı
release mode
-
- 29 Tem, 2014 1 kayıt (commit)
-
-
Victor Stinner yazdı
* _WaitHandleFuture.cancel() now notify IocpProactor through the overlapped object that the wait was cancelled. * Optimize IocpProactor.wait_for_handle() gets the result if the wait is signaled immediatly. * Enhance representation of Future and Future subclasses - Add "created at filename:lineno" in the representation - Add Future._repr_info() method which can be more easily overriden than Future.__repr__(). It should now be more easy to enhance Future representation without having to modify each subclass. For example, _OverlappedFuture and _WaitHandleFuture get the new "created at" information. - Use reprlib to format Future result, and function arguments when formatting a callback, to limit the length of the representation. * Fix repr(_WaitHandleFuture) * _WaitHandleFuture and _OverlappedFuture: hide frames of internal calls in the source traceback. * Cleanup ProactorIocp._poll(): set the timeout to 0 after the first call to GetQueuedCompletionStatus() * test_locks: close the temporary event loop and check the condition lock * Remove workaround in test_futures, no more needed
-
- 10 Tem, 2014 1 kayıt (commit)
-
-
Victor Stinner yazdı
- Issues #21936, #21163: Fix sporadic failures of test_future_exception_never_retrieved() - Handle.cancel() now clears references to callback and args - In debug mode, repr(Handle) now contains the location where the Handle was created.
-
- 08 Tem, 2014 1 kayıt (commit)
-
-
Victor Stinner yazdı
- Tulip issue 185: Add a create_task() method to event loops. The create_task() method can be overriden in custom event loop to implement their own task class. For example, greenio and Pulsar projects use their own task class. The create_task() method is now preferred over creating directly task using the Task class. - tests: fix a warning - fix typo in the name of a test function - Update AbstractEventLoop: add new event loop methods; update also the unit test
-
- 05 Tem, 2014 1 kayıt (commit)
-
-
Victor Stinner yazdı
of a Future with call_soon(). Add an helper, a private method, to set the result only if the future was not cancelled.
-
- 27 Haz, 2014 2 kayıt (commit)
-
-
Victor Stinner yazdı
-
Victor Stinner yazdı
Handle objects are created. Pass the traceback to call_exception_handler() in the 'source_traceback' key. The traceback is truncated to hide internal calls in asyncio, show only the traceback from user code. Add tests for the new source_traceback, and a test for the 'Future/Task exception was never retrieved' log.
-
- 25 Haz, 2014 1 kayıt (commit)
-
-
Victor Stinner yazdı
- Uniformize repr() output to format "<Class ...>" - On Python 3.5+, repr(Task) uses the qualified name instead of the short name of the coroutine
-
- 17 Haz, 2014 1 kayıt (commit)
-
-
Victor Stinner yazdı
-
- 26 Şub, 2014 1 kayıt (commit)
-
-
Victor Stinner yazdı
Use "from unittest import mock". It should simplify my work to merge new tests in Trollius, because Trollius uses "mock" backport for Python 2.
-
- 19 Şub, 2014 1 kayıt (commit)
-
-
Yury Selivanov yazdı
Thanks to Vajrasky Kok for discovering some of them.
-
- 18 Şub, 2014 1 kayıt (commit)
-
-
Yury Selivanov yazdı
-
- 19 Şub, 2014 1 kayıt (commit)
-
-
Yury Selivanov yazdı
Thanks to Vajrasky Kok for discovering some of them.
-
- 18 Şub, 2014 1 kayıt (commit)
-
-
Yury Selivanov yazdı
-
- 31 Ock, 2014 1 kayıt (commit)
-
-
Victor Stinner yazdı
-
- 25 Ock, 2014 1 kayıt (commit)
-
-
Victor Stinner yazdı
Major changes: - StreamReader.readexactly() now raises an IncompleteReadError if the end of stream is reached before we received enough bytes, instead of returning less bytes than requested. - Unit tests use the main asyncio module instead of submodules like events - _UnixWritePipeTransport now also supports character devices, as _UnixReadPipeTransport. Patch written by Jonathan Slenders. - Export more symbols: BaseEventLoop, BaseProactorEventLoop, BaseSelectorEventLoop, Queue and Queue sublasses, Empty, Full
-
- 22 Kas, 2013 1 kayıt (commit)
-
-
Guido van Rossum yazdı
asyncio: Pass cancellation from wrapping Future to wrapped Future. By Saúl Ibarra Corretgé (mostly).
-
- 17 Eki, 2013 2 kayıt (commit)
-
-
Guido van Rossum yazdı
-
Guido van Rossum yazdı
-