Guido van Rossum
|
68600c73bf
|
asyncio: Fix space in log message about poll time.
|
2013-12-20 20:37:41 -08:00 |
Victor Stinner
|
e40c078627
|
Issue #19967: Defer the formating of the traceback in asyncio.Future destructor
|
2013-12-21 00:19:33 +01:00 |
Guido van Rossum
|
ac97bf4fd9
|
asyncio: Export all abstract protocol and transport classes. Fixes issue #20029.
|
2013-12-20 14:16:21 -08:00 |
Guido van Rossum
|
9ba75db3c5
|
asyncio: Clean up formatting.
|
2013-12-19 13:49:32 -08:00 |
Victor Stinner
|
4c3c699e62
|
Close #19967: Thanks to the PEP 442, asyncio.Future can use a destructor in
Python 3.4 to log "uncatched" exceptions, instead of the dedicated
_TracebackLogger class.
|
2013-12-19 22:42:40 +01:00 |
Guido van Rossum
|
994bf4332f
|
Shorten lines.
|
2013-12-19 12:47:38 -08:00 |
Victor Stinner
|
2748bc735e
|
asyncio: remove references to the Tulip project, rename Tulip to asyncio.
Patch written by Vajrasky Kok.
|
2013-12-13 10:57:04 +01:00 |
Victor Stinner
|
782b8e4b88
|
Remove a duplicated import
|
2013-12-07 15:02:09 +01:00 |
Guido van Rossum
|
1a605ed5a3
|
asyncio: Add Task.current_task() class method.
|
2013-12-06 12:57:40 -08:00 |
Christian Heimes
|
c9a87e6bbe
|
fix cert names for asyncio test
|
2013-12-06 02:58:23 +01:00 |
Christian Heimes
|
6d8c1abb00
|
Issue #19509: Finish implementation of check_hostname
The new asyncio package now supports the new feature and comes with additional tests for SSL.
|
2013-12-06 00:23:13 +01:00 |
Charles-François Natali
|
74e7cf3f46
|
Issue #19850: asyncio: Set SA_RESTART when registering a signal handler to
limit EINTR occurrences.
|
2013-12-05 22:47:19 +01:00 |
Guido van Rossum
|
ebb8e58f0a
|
asyncio: Write flow control for proactor event loop.
|
2013-12-04 12:12:07 -08:00 |
Victor Stinner
|
cf6f72e329
|
Fix typo in asyncio.AbstractServer documentation
|
2013-12-03 18:23:52 +01:00 |
Guido van Rossum
|
f10345e102
|
asyncio: Improve default writelines().
|
2013-12-02 18:36:30 -08:00 |
Victor Stinner
|
10a8e6ab7b
|
asyncio: replace our with asynchronous in docstring
|
2013-12-02 14:31:43 +01:00 |
Victor Stinner
|
c37dd614b6
|
asyncio: document locks
|
2013-12-02 14:31:16 +01:00 |
Charles-François Natali
|
b3330a0abf
|
Issue #19842: Refactor BaseSelector to make it an actual usable ABC.
|
2013-12-01 11:04:17 +01:00 |
Guido van Rossum
|
9204af42cc
|
asyncio: Use Interface instead of ABC. Fixes issue 19726.
|
2013-11-30 15:35:42 -08:00 |
Guido van Rossum
|
de3a1363a9
|
asyncio: Add 'shield' to __all__.
|
2013-11-29 09:29:00 -08:00 |
Guido van Rossum
|
a5062c5d81
|
asyncio: Change write buffer use to avoid O(N**2). Make write()/sendto() accept bytearray/memoryview too. Change some asserts with proper exceptions.
|
2013-11-27 14:12:48 -08:00 |
Guido van Rossum
|
cced076218
|
asyncio: Fix get_event_loop() to call set_event_loop() when setting the loop. By Anthony Baire.
|
2013-11-27 10:37:13 -08:00 |
Guido van Rossum
|
49c96fb7fa
|
asyncio: Add StreamReaderProtocol to __all__.
|
2013-11-25 15:07:18 -08:00 |
Guido van Rossum
|
16c42391f1
|
asyncio: Fix docstring of get_nowait().
|
2013-11-24 22:41:35 -08:00 |
Guido van Rossum
|
a58d1c32f8
|
asyncio: Add BoundedSemaphore to export list in locks.__all__.
|
2013-11-24 22:32:09 -08:00 |
Richard Oudkerk
|
71196e7f55
|
Issue #19740: Use WaitForSingleObject() instead of trusting TimerOrWaitFired.
|
2013-11-24 17:50:40 +00:00 |
Guido van Rossum
|
7fa6e1aeea
|
Keep asyncio working with Python 3.3 too.
|
2013-11-23 15:36:43 -08:00 |
Guido van Rossum
|
085869bfee
|
asyncio: Change bounded semaphore into a subclass, like threading.[Bounded]Semaphore.
|
2013-11-23 15:09:16 -08:00 |
Christian Heimes
|
67986f9431
|
Issue #19735: Implement private function ssl._create_stdlib_context() to
create SSLContext objects in Python's stdlib module. It provides a single
configuration point and makes use of SSLContext.load_default_certs().
|
2013-11-23 22:43:47 +01:00 |
Guido van Rossum
|
488b0da5da
|
Fix typo.
|
2013-11-23 11:51:09 -08:00 |
Antoine Pitrou
|
dec43382c1
|
Fix transport docstrings
|
2013-11-23 12:30:00 +01:00 |
Guido van Rossum
|
7a465647e4
|
asyncio: Pass cancellation from wrapping Future to wrapped Future. By Saúl Ibarra Corretgé (mostly).
|
2013-11-22 11:47:22 -08:00 |
Guido van Rossum
|
9c55a58a1d
|
asyncio: Make Semaphore(0) work properly.
|
2013-11-21 11:07:45 -08:00 |
Guido van Rossum
|
1540b16ff4
|
asyncio: Add streams.start_server(), by Gustavo Carneiro.
|
2013-11-19 11:43:38 -08:00 |
Guido van Rossum
|
2335de7a20
|
asyncio: Replace connection_refused() with error_received().
|
2013-11-15 16:51:48 -08:00 |
Guido van Rossum
|
2bcae708d8
|
asyncio: Fix from Anthony Baire for CPython issue 19566 (replaces earlier fix).
|
2013-11-13 15:50:08 -08:00 |
Guido van Rossum
|
82e9f32f17
|
asyncio: Temporary fix by Victor Stinner for issue 19566.
|
2013-11-13 11:08:34 -08:00 |
Guido van Rossum
|
0b69fbc642
|
asyncio: Add close() back to Unix selector event loop, to remove all signal handlers. Should fix buildbot issues.
|
2013-11-06 20:25:50 -08:00 |
Guido van Rossum
|
0eaa5ac9b5
|
asyncio: Refactor SIGCHLD handling. By Anthony Baire.
|
2013-11-04 15:50:46 -08:00 |
Guido van Rossum
|
ccea08462b
|
asyncio: Locks improvements by Arnaud Faure: better repr(), change Conditio\
n structure.
|
2013-11-04 13:18:19 -08:00 |
Guido van Rossum
|
28dff0d823
|
asyncio: Better-looking errors when ssl module cannot be imported. In part by Arnaud Faure.
|
2013-11-01 14:22:30 -07:00 |
Guido van Rossum
|
a8d630a6e6
|
asyncio: Various style nits.
|
2013-11-01 14:20:55 -07:00 |
Guido van Rossum
|
3a703921a6
|
asyncio: Log a warning when eof_received() returns true and using ssl.
|
2013-11-01 14:19:35 -07:00 |
Guido van Rossum
|
e3f52ef067
|
asyncio: Document EventLoop.close().
|
2013-11-01 14:19:04 -07:00 |
Guido van Rossum
|
2b57016458
|
asyncio: Refactor ssl transport ready loop (Nikolay Kim).
|
2013-11-01 14:18:02 -07:00 |
Guido van Rossum
|
21c85a7124
|
asyncio: Add server_hostname as create_connection() argument, with secure default.
|
2013-11-01 14:16:54 -07:00 |
Guido van Rossum
|
2b430b8720
|
asyncio: Fold some long lines.
|
2013-11-01 14:13:30 -07:00 |
Guido van Rossum
|
3317a13253
|
asyncio: Pause accepting whenever accept() returns certain errors. Fixes asyncio issue #78.
|
2013-11-01 14:12:50 -07:00 |
Guido van Rossum
|
0016e1d8ba
|
asyncio: Add new file (forgotten).
|
2013-10-30 14:56:49 -07:00 |
Guido van Rossum
|
5969128a86
|
asyncio: Add support for running subprocesses on Windows with the IOCP event loop (Richard Oudkerk).
|
2013-10-30 14:52:03 -07:00 |