- 15 Eki, 2014 1 kayıt (commit)
-
-
Antoine Pitrou yazdı
Issue #22641: In asyncio, the default SSL context for client connections is now created using ssl.create_default_context(), for stronger security.
-
- 25 Agu, 2014 1 kayıt (commit)
-
-
Victor Stinner yazdı
* PipeServer.close() now cancels the "accept pipe" future which cancels the overlapped operation. * Fix _SelectorTransport.__repr__() if the transport was closed * Fix debug log in BaseEventLoop.create_connection(): get the socket object from the transport because SSL transport closes the old socket and creates a new SSL socket object. Remove also the _SelectorSslTransport._rawsock attribute: it contained the closed socket (not very useful) and it was not used. * Issue #22063: socket operations (sock_recv, sock_sendall, sock_connect, sock_accept) of the proactor event loop don't raise an exception in debug mode if the socket are in blocking mode. Overlapped operations also work on blocking sockets. * Fix unit tests in debug mode: mock a non-blocking socket for socket operations which now raise an exception if the socket is blocking. * _fatal_error() method of _UnixReadPipeTransport and _UnixWritePipeTransport now log all exceptions in debug mode * Don't log expected errors in unit tests * Tulip issue 200: _WaitHandleFuture._unregister_wait() now catchs and logs exceptions. * Tulip issue 200: Log errors in debug mode instead of simply ignoring them.
-
- 14 Tem, 2014 1 kayıt (commit)
-
-
Victor Stinner yazdı
in debug mode
-
- 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
-
- 30 Haz, 2014 1 kayıt (commit)
-
-
Victor Stinner yazdı
don't log the "destroy pending task" message anymore. The log is redundant for run_until_complete() and useless in run_briefly().
-
- 28 Haz, 2014 1 kayıt (commit)
-
-
Victor Stinner yazdı
-
- 17 Haz, 2014 1 kayıt (commit)
-
-
Victor Stinner yazdı
-
- 12 Haz, 2014 1 kayıt (commit)
-
-
Victor Stinner yazdı
repr(Handle) is shorter for function: "foo" instead of "<function foo at 0x...>". It now also includes the source of the callback, filename and line number where it was defined, if available. repr(Task) now also includes the current position in the code, filename and line number, if available. If the coroutine (generator) is done, the line number is omitted and "done" is added.
-
- 06 Mar, 2014 1 kayıt (commit)
-
-
Victor Stinner yazdı
not reliable
-
- 26 Şub, 2014 2 kayıt (commit)
-
-
Victor Stinner yazdı
-
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.
-
- 20 Şub, 2014 1 kayıt (commit)
-
-
Victor Stinner yazdı
-
- 19 Şub, 2014 1 kayıt (commit)
-
-
Yury Selivanov yazdı
Thanks to Vajrasky Kok for discovering some of them.
-
- 18 Şub, 2014 2 kayıt (commit)
-
-
Yury Selivanov yazdı
-
Yury Selivanov yazdı
-
- 11 Şub, 2014 2 kayıt (commit)
-
-
Victor Stinner yazdı
call_at() and run_in_executor() now raise a TypeError if the callback is a coroutine function.
-
Victor Stinner yazdı
-
- 20 Şub, 2014 1 kayıt (commit)
-
-
Victor Stinner yazdı
-
- 19 Şub, 2014 1 kayıt (commit)
-
-
Yury Selivanov yazdı
Thanks to Vajrasky Kok for discovering some of them.
-
- 18 Şub, 2014 2 kayıt (commit)
-
-
Yury Selivanov yazdı
-
Yury Selivanov yazdı
-
- 11 Şub, 2014 2 kayıt (commit)
-
-
Victor Stinner yazdı
call_at() and run_in_executor() now raise a TypeError if the callback is a coroutine function.
-
Victor Stinner yazdı
-
- 09 Şub, 2014 2 kayıt (commit)
-
-
Victor Stinner yazdı
-
Guido van Rossum yazdı
-
- 31 Ock, 2014 1 kayıt (commit)
-
-
Victor Stinner yazdı
-
- 25 Ock, 2014 1 kayıt (commit)
-
-
Victor Stinner yazdı
-
- 13 Ara, 2013 1 kayıt (commit)
-
-
Victor Stinner yazdı
Patch written by Vajrasky Kok.
-
- 07 Ara, 2013 1 kayıt (commit)
-
-
Victor Stinner yazdı
-
- 06 Ara, 2013 2 kayıt (commit)
-
-
Guido van Rossum yazdı
-
Christian Heimes yazdı
-
- 01 Ara, 2013 1 kayıt (commit)
-
-
Charles-François Natali yazdı
-
- 20 Eki, 2013 1 kayıt (commit)
-
-
Antoine Pitrou yazdı
-
- 19 Eki, 2013 1 kayıt (commit)
-
-
Antoine Pitrou yazdı
-
- 17 Eki, 2013 1 kayıt (commit)
-
-
Guido van Rossum yazdı
-