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_unix_events.py
Commit message (
Expand
)
Author
Age
Files
Lines
*
bpo-32193: Convert asyncio to async/await usage (#4753)
Andrew Svetlov
2017-12-08
1
-3/+2
*
bpo-32166: Drop Python 3.4 code from asyncio (#4612)
Andrew Svetlov
2017-11-29
1
-2/+2
*
bpo-28684: asyncio tests handle PermissionError raised on binding unix socket...
xdegaye
2017-11-24
1
-0/+4
*
bpo-32066: Support pathlib.Path in create_unix_connection; sock arg should be...
Yury Selivanov
2017-11-20
1
-2/+10
*
bpo-28369: Enhance transport socket check in add_reader/writer (#4365)
Yury Selivanov
2017-11-13
1
-0/+70
*
Remove unused imports.
Serhiy Storchaka
2016-12-16
1
-1/+0
*
Issue #28704: Fix create_unix_server to support Path-like objects
Yury Selivanov
2016-11-15
1
-0/+10
*
Issue #28652: Make loop methods reject socket kinds they do not support.
Yury Selivanov
2016-11-09
1
-0/+27
*
Issue #28613: Fix get_event_loop() to return the current loop
Yury Selivanov
2016-11-04
1
-0/+5
*
Issue #28399: Remove UNIX socket from FS before binding.
Yury Selivanov
2016-10-09
1
-5/+7
*
asyncio: Only allow Unix Stream sockets for loop.create_unix_server/connection
Yury Selivanov
2016-10-07
1
-1/+10
*
Issue #28368: Refuse monitoring processes if the child watcher has no loop at...
Yury Selivanov
2016-10-05
1
-1/+13
*
Issue #26909: Fix slow pipes IO in asyncio.
Yury Selivanov
2016-09-15
1
-27/+22
*
asyncio: Add Transport.is_closing()
Yury Selivanov
2015-11-16
1
-6/+6
*
Use os.devnull instead of hardcoded '/dev/null'.
Serhiy Storchaka
2015-02-15
1
-3/+3
*
asyncio: sync with Tulip
Victor Stinner
2015-01-29
1
-18/+11
*
Issue #23243: Close explicitly transports in asyncio tests
Victor Stinner
2015-01-15
1
-94/+60
*
Issue #23243: Fix asyncio._UnixWritePipeTransport.close()
Victor Stinner
2015-01-15
1
-0/+3
*
asyncio: sync with Tulip
Victor Stinner
2015-01-14
1
-0/+1
*
asyncio: sync with Tulip
Victor Stinner
2014-12-26
1
-2/+0
*
asyncio: Coroutine objects are now rejected with a TypeError by the following
Victor Stinner
2014-11-20
1
-4/+10
*
- Issue #22841: Reject coroutines in asyncio add_signal_handler().
Guido van Rossum
2014-11-14
1
-0/+12
*
asyncio: Use the new os.set_blocking() function of Python 3.5 if available
Victor Stinner
2014-07-29
1
-6/+6
*
asyncio: sync with Tulip
Victor Stinner
2014-07-23
1
-9/+8
*
Python issue #21645, Tulip issue 192: Rewrite signal handling
Victor Stinner
2014-07-17
1
-2/+2
*
asyncio: Enable the debug mode of event loops when the PYTHONASYNCIODEBUG
Victor Stinner
2014-06-22
1
-8/+0
*
asyncio: Refactor tests: add a base TestCase class
Victor Stinner
2014-06-17
1
-23/+17
*
Issue #21119: asyncio now closes sockets on errors
Victor Stinner
2014-06-03
1
-0/+18
*
remove superfluous and useless line
Benjamin Peterson
2014-04-16
1
-1/+0
*
asyncio: Fix pyflakes warnings: remove unused variables and imports
Victor Stinner
2014-02-26
1
-10/+6
*
asyncio: Replace "unittest.mock" with "mock" in unit tests
Victor Stinner
2014-02-26
1
-95/+95
*
asyncio: pep8-ify the code.
Yury Selivanov
2014-02-19
1
-2/+4
*
asyncio: Fix spelling and typos.
Yury Selivanov
2014-02-19
1
-3/+3
*
asyncio, Tulip issue 143: UNIX domain methods, fix ResourceWarning and
Victor Stinner
2014-02-19
1
-13/+15
*
asyncio, Tulip issue 139: Improve error messages on "fatal errors"
Victor Stinner
2014-02-19
1
-3/+5
*
asyncio: New error handling API. Issue #20681.
Yury Selivanov
2014-02-18
1
-14/+25
*
asyncio: Add support for UNIX Domain Sockets.
Yury Selivanov
2014-02-18
1
-1/+81
*
Update asyncio from the Tulip project
Victor Stinner
2014-01-25
1
-26/+25
*
asyncio: Change mock pipe to mock socket. Hope to fix issue 19750.
Guido van Rossum
2013-11-25
1
-1/+1
*
asyncio: Refactor waitpid mocks. Patch by Anthony Baire.
Guido van Rossum
2013-11-15
1
-249/+186
*
Issue #19589: Use specific asserts in asyncio tests.
Serhiy Storchaka
2013-11-14
1
-1/+1
*
asyncio: Fix from Anthony Baire for CPython issue 19566 (replaces earlier fix).
Guido van Rossum
2013-11-13
1
-13/+16
*
asyncio: Add close() back to Unix selector event loop, to remove all signal h...
Guido van Rossum
2013-11-07
1
-0/+16
*
asyncio: Refactor SIGCHLD handling. By Anthony Baire.
Guido van Rossum
2013-11-04
1
-118/+869
*
Switch subprocess stdin to a socketpair, attempting to fix issue #19293 (AIX ...
Guido van Rossum
2013-10-22
1
-0/+7
*
asyncio: be more lenient if we don't understand status returned by waitpid().
Guido van Rossum
2013-10-21
1
-1/+1
*
Make various asyncio test files individually runnable
Antoine Pitrou
2013-10-20
1
-0/+4
*
Rename Transport.pause/resume to pause_reading/pause_writing. Also relax time...
Guido van Rossum
2013-10-18
1
-4/+4
*
Rename the logger to plain "logger".
Guido van Rossum
2013-10-17
1
-7/+7
*
Make asyncio tests run on Windows.
Guido van Rossum
2013-10-17
1
-0/+3
[next]