index
:
cpython.git
2.7
3.3
3.4
3.5
3.6
benjamin-clang
benjamin-iteration-torture
buildbot-custom
master
https://github.com/python/cpython.git
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
Lib
/
test
/
test_asyncio
/
test_events.py
Commit message (
Expand
)
Author
Age
Files
Lines
*
asyncio: _check_resolved_address() must also accept IPv6 without flow_info and
Victor Stinner
2014-02-20
1
-3/+6
*
asyncio: ops, and now fix also the unit test for IPv6 address:
Victor Stinner
2014-02-20
1
-4/+3
*
Issue #20682: Oops, fix test_create_connection() of test_asyncio (fix my prev...
Victor Stinner
2014-02-19
1
-1/+1
*
Close #20682: Fix UNIX sockets tests of test_asyncio on Mac OS X Tiger
Victor Stinner
2014-02-19
1
-5/+27
*
asyncio: Fix spelling and typos.
Yury Selivanov
2014-02-19
1
-1/+0
*
Issue #20682: test_asyncio, _basetest_create_connection() checks also the
Victor Stinner
2014-02-19
1
-0/+1
*
asyncio: New error handling API. Issue #20681.
Yury Selivanov
2014-02-18
1
-16/+28
*
asyncio: Add support for UNIX Domain Sockets.
Yury Selivanov
2014-02-18
1
-114/+235
*
Issue #20667: KqueueEventLoopTests.test_read_pty_output() hangs also on OpenB...
Victor Stinner
2014-02-18
1
-2/+3
*
Issue #20667: test_asyncio: Skip KqueueEventLoopTests.test_read_pty_output() on
Victor Stinner
2014-02-18
1
-0/+3
*
Fix test_asyncio/test_events.py: skip IPv6 if IPv6 is disabled on the host
Victor Stinner
2014-02-13
1
-1/+5
*
ayncio, Tulip issue 129: BaseEventLoop.sock_connect() now raises an error if
Victor Stinner
2014-02-13
1
-0/+12
*
Issue #20495: Skip test_read_pty_output() of test_asyncio on FreeBSD older than
Victor Stinner
2014-02-11
1
-0/+2
*
Issue #20505: BaseEventLoop uses again the resolution of the clock to decide if
Victor Stinner
2014-02-10
1
-6/+6
*
Issue #20505: Use even shorter sleep in test_timeout_rounding() to make the
Victor Stinner
2014-02-10
1
-3/+5
*
Issue #20505: Add debug info to analyze sporaric failures of
Victor Stinner
2014-02-10
1
-1/+4
*
asyncio: Tulip issue 112: Inline make_handle() into Handle constructor
Victor Stinner
2014-02-09
1
-2/+2
*
Issue #20505: Remove resolution and _granularity from selectors and asyncio
Victor Stinner
2014-02-07
1
-16/+7
*
Oops, undo unwanted changes in test_asyncio: mistakes of my the last sync with
Victor Stinner
2014-02-03
1
-0/+8
*
Issue #20472: test_asyncio: skip PTY tests on Mac OS X older than 10.6
Victor Stinner
2014-02-02
1
-0/+6
*
Issue #20400: Merge Tulip into Python: add the new asyncio.subprocess module
Victor Stinner
2014-02-01
1
-8/+0
*
Issue #20452: test_asyncio checks also the granularity
Victor Stinner
2014-02-01
1
-0/+8
*
Issue #20452: Remove debug code, no more needed
Victor Stinner
2014-01-31
1
-13/+1
*
Issue #20452: select and selectors round (again) timeout away from zero for
Victor Stinner
2014-01-31
1
-13/+10
*
Issue #20452: Oops, fix debug code :-/
Victor Stinner
2014-01-31
1
-0/+6
*
Issue #20452: add more info in case of test_asyncio failure to try to debug the
Victor Stinner
2014-01-31
1
-1/+10
*
asyncio: subprocess_shell() and subprocess_exec() now raise ValueError instea...
Victor Stinner
2014-01-29
1
-0/+32
*
Merge latest Tulip into asyncio
Victor Stinner
2014-01-25
1
-2/+2
*
asyncio: Don't export BaseEventLoop, BaseSelectorEventLoop nor
Victor Stinner
2014-01-25
1
-1/+2
*
Update asyncio from the Tulip project
Victor Stinner
2014-01-25
1
-114/+155
*
Issue #20311: asyncio: Add a granularity attribute to BaseEventLoop: maximum
Victor Stinner
2014-01-25
1
-0/+23
*
Close #20365: Skip test_asyncio.test_events.test_read_pty_output() on Mac OS X
Victor Stinner
2014-01-23
1
-0/+3
*
asyncio: Minimal pty support in UNIX read pipe, by Jonathan Slenders.
Guido van Rossum
2014-01-10
1
-0/+42
*
Shorten lines.
Guido van Rossum
2013-12-19
1
-1/+2
*
Skip some tests that require server name indication (SNI)
Christian Heimes
2013-12-15
1
-0/+6
*
Issue 19572: More silently skipped tests explicitly skipped.
Zachary Ware
2013-12-08
1
-1/+1
*
copy 'n paste typo (thx Antoine)
Christian Heimes
2013-12-06
1
-5/+5
*
Skip new SSL tests with IocpEventLoop
Christian Heimes
2013-12-06
1
-0/+9
*
Issue #19509: Finish implementation of check_hostname
Christian Heimes
2013-12-05
1
-17/+123
*
asyncio: Fix get_event_loop() to call set_event_loop() when setting the loop....
Guido van Rossum
2013-11-27
1
-0/+16
*
asyncio: Hopeful fix for issue 19765.
Guido van Rossum
2013-11-25
1
-0/+1
*
asyncio: Use socketpair() from test_utils in tests (Saúl Ibarra Corretgé).
Guido van Rossum
2013-11-23
1
-1/+1
*
asyncio: Replace connection_refused() with error_received().
Guido van Rossum
2013-11-16
1
-2/+2
*
Issue #19589: Use specific asserts in asyncio tests.
Serhiy Storchaka
2013-11-14
1
-8/+10
*
asyncio: Fix from Anthony Baire for CPython issue 19566 (replaces earlier fix).
Guido van Rossum
2013-11-13
1
-1/+3
*
asyncio: Refactor SIGCHLD handling. By Anthony Baire.
Guido van Rossum
2013-11-04
1
-12/+32
*
Relax test for process return code on Windows.
Richard Oudkerk
2013-11-02
1
-2/+2
*
asyncio: Various style nits.
Guido van Rossum
2013-11-01
1
-1/+0
*
asyncio: Document EventLoop.close().
Guido van Rossum
2013-11-01
1
-0/+2
*
asyncio: Add support for running subprocesses on Windows with the IOCP event ...
Guido van Rossum
2013-10-30
1
-35/+70
[next]