index
:
delta/python-packages/trollius-git.git
1.0.4
2.2
asyncio
closing
iocp
issue-26
issue_222
master
newcancel
proactor
remove-joinable-queue
subproces-stream
subprocess_stream
traceback
trollius
trollius-2.1.post1
uninterpolate
wiki
github.com: jamadden/trollius.git
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
asyncio
Commit message (
Expand
)
Author
Age
Files
Lines
...
|
*
Tulip issue #184: FlowControlMixin constructor now get the event loop if the
Victor Stinner
2015-01-09
1
-3
/
+7
|
*
Remove outdated TODO/XXX
Victor Stinner
2015-01-09
4
-8
/
+3
|
*
Document why set_result() calls are safe
Victor Stinner
2015-01-09
1
-0
/
+6
|
*
Cleanup gather()
Victor Stinner
2015-01-09
1
-4
/
+7
|
*
sock_connect(): pass directly the fd to _sock_connect_done instead of the socket
Victor Stinner
2015-01-09
1
-3
/
+3
|
*
selectors: truncate to 80 characters
Victor Stinner
2015-01-09
1
-1
/
+2
|
*
Truncate to 80 columns
Victor Stinner
2015-01-09
8
-22
/
+31
|
*
_make_ssl_transport: make the waiter parameter optional
Victor Stinner
2015-01-08
2
-3
/
+3
|
*
Issue #23140: Fix cancellation of Process.wait(). Check the state of the waiter
Victor Stinner
2015-01-06
1
-1
/
+2
|
*
Python issue #23046: Expose the BaseEventLoop class in the asyncio namespace
Victor Stinner
2015-01-06
2
-2
/
+4
|
*
fix typo
Victor Stinner
2014-12-26
1
-1
/
+1
|
*
Python issue #22926: In debug mode, call_soon(), call_at() and call_later()
Victor Stinner
2014-12-26
3
-23
/
+23
|
*
Fix doc of get and put methods of Queue
Victor Stinner
2014-12-26
1
-3
/
+7
|
*
asyncio.test_support now uses test.support and test.script_helper if available
Victor Stinner
2014-12-19
1
-0
/
+12
|
*
IocpProactor.wait_for_handle() test now also checks the result of the future
Victor Stinner
2014-12-19
1
-0
/
+5
|
*
support: fix assert_python_ok() on python 3.3
Victor Stinner
2014-12-18
1
-1
/
+1
|
*
Fix a race condition in BaseSubprocessTransport._try_finish()
Victor Stinner
2014-12-18
1
-1
/
+1
|
*
Add repr(PipeHandle)
Victor Stinner
2014-12-18
1
-0
/
+7
|
*
test_support: add missing import
Victor Stinner
2014-12-18
1
-0
/
+2
|
*
Fix typo
Victor Stinner
2014-12-18
1
-1
/
+1
|
*
Copy a subset of test.support from CPython 3.5 to no more depend on the test
Victor Stinner
2014-12-18
1
-0
/
+290
|
*
Python issue #23074: get_event_loop() now raises an exception if the thread has
Victor Stinner
2014-12-18
2
-4
/
+4
|
*
Add run_aiotest.py
Victor Stinner
2014-12-12
22
-0
/
+9464
*
BaseSubprocessTransport: repr() mentions when the child process is running
Victor Stinner
2015-02-12
1
-0
/
+2
*
BaseSubprocessTransport.close() doesn't try to kill the process if it already
Victor Stinner
2015-02-10
1
-1
/
+6
*
BaseEventLoop: rename _owner to _thread_id
3.4.3
Victor Stinner
2015-02-04
1
-6
/
+6
*
Only call _check_resolved_address() in debug mode
Victor Stinner
2015-02-04
3
-18
/
+36
*
BaseSelectorEventLoop uses directly the private _debug attribute
Victor Stinner
2015-02-04
1
-5
/
+5
*
Tulip issue #221: Fix docstring of QueueEmpty and QueueFull
Victor Stinner
2015-02-03
1
-2
/
+6
*
Workaround CPython bug #23353
Victor Stinner
2015-02-02
3
-4
/
+23
*
Python issue #23347: send_signal(), terminate(), kill() don't check if the
Victor Stinner
2015-01-30
1
-4
/
+3
*
Python issue #23347: Make BaseSubprocessTransport.wait() private
Victor Stinner
2015-01-30
4
-4
/
+4
*
Python issue #23347: send_signal(), kill() and terminate() methods of
Victor Stinner
2015-01-29
2
-7
/
+9
*
Python issue #23347: Refactor creation of subprocess transports
Victor Stinner
2015-01-29
4
-80
/
+74
*
Python issue #23243: On Python 3.4 and newer, emit a ResourceWarning when an
Victor Stinner
2015-01-29
8
-5
/
+96
*
Document Protocol state machine
Victor Stinner
2015-01-29
1
-0
/
+5
*
Fix BaseSelectorEventLoop._accept_connection()
Victor Stinner
2015-01-29
1
-6
/
+38
*
Fix _UnixReadPipeTransport and _UnixWritePipeTransport
Victor Stinner
2015-01-29
1
-6
/
+11
*
Cleanup gather(): use cancelled() method instead of using private Future
Victor Stinner
2015-01-29
1
-1
/
+1
*
Fix _SelectorSslTransport.close()
Victor Stinner
2015-01-29
1
-1
/
+6
*
_SelectorTransport constructor: extra parameter is now optional
Victor Stinner
2015-01-29
1
-1
/
+1
*
Fix _SelectorDatagramTransport constructor
Victor Stinner
2015-01-29
1
-1
/
+3
*
BaseSubprocessTransport._kill_wait() now also call close()
Victor Stinner
2015-01-29
1
-0
/
+3
*
Fix _SelectorSocketTransport constructor
Victor Stinner
2015-01-29
1
-1
/
+3
*
SSL transports now clear their reference to the waiter
Victor Stinner
2015-01-29
4
-21
/
+32
*
Fix SSLProtocol.eof_received()
Victor Stinner
2015-01-28
1
-0
/
+4
*
Remove unused SSLProtocol._closing attribute
Victor Stinner
2015-01-28
1
-1
/
+0
*
Python issue #23208: Don't use the traceback of the current handle if we
Victor Stinner
2015-01-26
1
-1
/
+2
*
Tulip issue #204: Fix IocpProactor.recv()
Victor Stinner
2015-01-26
1
-7
/
+13
*
Python issue #23095: Fix _WaitHandleFuture.cancel()
Victor Stinner
2015-01-26
1
-20
/
+17
[prev]
[next]