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
Commit message (
Expand
)
Author
Age
Files
Lines
...
*
release.py: add an option to skip tests
Victor Stinner
2014-12-18
1
-2
/
+4
*
release.py now also run tests, runtests.py and run_aiotest.py
Victor Stinner
2014-12-18
1
-14
/
+36
*
Add tox.ini
Victor Stinner
2014-12-18
3
-2
/
+13
*
Copy a subset of test.support from CPython 3.5 to no more depend on the test
Victor Stinner
2014-12-18
8
-16
/
+332
*
update release procedure
Victor Stinner
2014-12-18
1
-1
/
+2
*
Add release.py
Victor Stinner
2014-12-18
1
-4
/
+19
*
setup.py: set version to 3.4.3; write the release procedure
Victor Stinner
2014-12-18
1
-1
/
+13
*
Add release.py
Victor Stinner
2014-12-18
1
-0
/
+227
*
Python issue #23074: get_event_loop() now raises an exception if the thread has
Victor Stinner
2014-12-18
3
-6
/
+6
*
Merge heads
Victor Stinner
2014-12-15
0
-0
/
+0
|
\
|
*
Backed out changeset 2af65c9de2a8
Victor Stinner
2014-12-15
1
-1
/
+0
|
*
hgignore: ignore .tox/ directory
Victor Stinner
2014-12-15
1
-0
/
+1
|
*
Fix subprocess for close_fds=False on Python 3.3
Victor Stinner
2014-12-11
2
-0
/
+43
|
*
Tulip issue #202: Add unit test of pause/resume writing for proactor socket
Victor Stinner
2014-12-11
2
-4
/
+82
|
*
selectors: Fix typo.
Yury Selivanov
2014-12-08
1
-1
/
+1
|
*
selectors: Make sure EpollSelecrtor.select() works when no FD is registered.
Yury Selivanov
2014-12-08
1
-1
/
+6
|
*
Python issue #22922: Fix ProactorEventLoop.close()
Victor Stinner
2014-12-05
1
-1
/
+3
|
*
Python issue #22429: Fix EventLoop.run_until_complete(), don't stop the event
Victor Stinner
2014-12-05
2
-2
/
+37
|
*
Python issue #22685: Fix test_pause_reading() of test_subprocess
Victor Stinner
2014-12-04
1
-7
/
+12
|
*
Removed duplicated words in in comments and docs. Patch written by Serhiy
Victor Stinner
2014-12-04
2
-2
/
+2
|
*
Python issue #22475: fix Task.get_stack() doc
Victor Stinner
2014-12-04
1
-1
/
+1
|
*
Python issue #22922: More EventLoop methods fail if the loop is closed. Initial
Victor Stinner
2014-12-04
3
-1
/
+39
|
*
Initialize more Future and Task attributes in the class definition to avoid
Victor Stinner
2014-12-04
2
-5
/
+5
|
*
Python issue #22921: Don't require OpenSSL SNI to pass hostname to ssl
Benjamin Peterson
2014-11-25
3
-10
/
+2
|
*
Python issue #22685: Set the transport of stdout and stderr StreamReader
Victor Stinner
2014-11-25
2
-5
/
+44
|
*
BaseSelectorEventLoop.close() now closes the self-pipe before calling the
Victor Stinner
2014-11-21
1
-1
/
+3
|
*
Coroutine objects are now rejected with a TypeError by the following functions:
Victor Stinner
2014-11-20
4
-21
/
+35
|
*
test_events: Ignore the "SSL handshake failed" log in debug mode
Victor Stinner
2014-11-20
1
-1
/
+3
|
*
Fix formatting of the "Future exception was never retrieved"
Victor Stinner
2014-11-20
2
-26
/
+46
|
*
Fix test_events.py on Python 3.3: ssl.Purpose was introduced in Python 3.4
Victor Stinner
2014-11-20
1
-16
/
+18
|
*
runtests.py: only catch SkipTest exception when loading a module, don't catch
Victor Stinner
2014-11-20
1
-1
/
+1
|
*
CPython issue #22784: fix test_asyncio when the ssl module isn't available. (...
Guido van Rossum
2014-11-14
1
-8
/
+9
|
*
- Issue #22841: Reject coroutines in asyncio add_signal_handler().
Guido van Rossum
2014-11-14
2
-0
/
+15
|
*
Python issue #22641: On Python 3.4 and newer, the default SSL context for
Victor Stinner
2014-11-05
4
-18
/
+58
|
*
Move loop attribute to _FlowControlMixin
Victor Stinner
2014-11-05
5
-8
/
+8
|
*
Added tag 3.4.2 for changeset 5f2a130f7a8c
Guido van Rossum
2014-10-08
0
-0
/
+0
|
*
Reuse socket.socketpair() on Windows if available
Victor Stinner
2014-10-14
2
-41
/
+47
|
*
Enhance protocol representation
Victor Stinner
2014-10-14
2
-2
/
+13
|
*
run_forever() now consumes BaseException of the temporary task
Victor Stinner
2014-10-11
2
-2
/
+30
|
*
Python issue 22448: cleanup _run_once(), only iterate once to remove delayed
3.4.2
Victor Stinner
2014-09-30
1
-4
/
+7
|
*
test_tasks: Fix test_env_var_debug to use correct asyncio module (issue #207)
Yury Selivanov
2014-09-25
1
-4
/
+11
|
*
Improve canceled timer callback handles cleanup (CPython issue #22448)
Yury Selivanov
2014-09-25
4
-26
/
+145
|
*
unix_events: Move import statement to sync code with cpython
Yury Selivanov
2014-09-24
1
-1
/
+2
|
*
tasks.py: Sync comments updates from cpython tree
Yury Selivanov
2014-09-24
1
-9
/
+10
|
*
Python issue #22369: Change "context manager protocol" to "context management...
Victor Stinner
2014-09-17
1
-2
/
+2
|
*
Fix Handle and TimerHandle repr in debug mode
Victor Stinner
2014-09-17
2
-17
/
+24
|
*
Tulip issue #205: Fix a race condition in BaseSelectorEventLoop.sock_connect()
Victor Stinner
2014-08-31
2
-35
/
+83
|
*
runtests.py: display a message to mention if tests are run in debug or releas...
Victor Stinner
2014-08-28
1
-0
/
+5
|
*
Tulip issue #201: Fix a race condition in wait_for()
Victor Stinner
2014-08-28
2
-6
/
+24
|
*
Tulip issue #203: Add _FlowControlMixin.get_write_buffer_limits() method
Victor Stinner
2014-08-26
2
-0
/
+5
[prev]
[next]