summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_asyncio/test_unix_events.py
Commit message (Collapse)AuthorAgeFilesLines
...
* asyncio: Fix pyflakes warnings: remove unused variables and importsVictor Stinner2014-02-261-10/+6
|
* asyncio: Replace "unittest.mock" with "mock" in unit testsVictor Stinner2014-02-261-95/+95
| | | | | Use "from unittest import mock". It should simplify my work to merge new tests in Trollius, because Trollius uses "mock" backport for Python 2.
* asyncio: pep8-ify the code.Yury Selivanov2014-02-191-2/+4
|
* asyncio: Fix spelling and typos.Yury Selivanov2014-02-191-3/+3
| | | | Thanks to Vajrasky Kok for discovering some of them.
* asyncio, Tulip issue 143: UNIX domain methods, fix ResourceWarning andVictor Stinner2014-02-191-13/+15
| | | | | DeprecationWarning warnings. create_unix_server() closes the socket on any error, not only on OSError.
* asyncio, Tulip issue 139: Improve error messages on "fatal errors"Victor Stinner2014-02-191-3/+5
| | | | | Mention if the error was caused by a read or a write, and be more specific on the object (ex: "pipe transport" instead of "transport").
* asyncio: New error handling API. Issue #20681.Yury Selivanov2014-02-181-14/+25
|
* asyncio: Add support for UNIX Domain Sockets.Yury Selivanov2014-02-181-1/+81
|
* Update asyncio from the Tulip projectVictor Stinner2014-01-251-26/+25
| | | | | | | | | | | | | | | | Major changes: - StreamReader.readexactly() now raises an IncompleteReadError if the end of stream is reached before we received enough bytes, instead of returning less bytes than requested. - Unit tests use the main asyncio module instead of submodules like events - _UnixWritePipeTransport now also supports character devices, as _UnixReadPipeTransport. Patch written by Jonathan Slenders. - Export more symbols: BaseEventLoop, BaseProactorEventLoop, BaseSelectorEventLoop, Queue and Queue sublasses, Empty, Full
* asyncio: Change mock pipe to mock socket. Hope to fix issue 19750.Guido van Rossum2013-11-251-1/+1
|
* asyncio: Refactor waitpid mocks. Patch by Anthony Baire.Guido van Rossum2013-11-151-249/+186
|
* Issue #19589: Use specific asserts in asyncio tests.Serhiy Storchaka2013-11-141-1/+1
|
* asyncio: Fix from Anthony Baire for CPython issue 19566 (replaces earlier fix).Guido van Rossum2013-11-131-13/+16
|
* asyncio: Add close() back to Unix selector event loop, to remove all signal ↵Guido van Rossum2013-11-071-0/+16
| | | | handlers. Should fix buildbot issues.
* asyncio: Refactor SIGCHLD handling. By Anthony Baire.Guido van Rossum2013-11-041-118/+869
|
* Switch subprocess stdin to a socketpair, attempting to fix issue #19293 (AIX ↵Guido van Rossum2013-10-221-0/+7
| | | | hang).
* asyncio: be more lenient if we don't understand status returned by waitpid().Guido van Rossum2013-10-211-1/+1
| | | | | This should have no effect, it's a "shouldn't happe" case. Also tidied up some comments.
* Make various asyncio test files individually runnableAntoine Pitrou2013-10-201-0/+4
|
* Rename Transport.pause/resume to pause_reading/pause_writing. Also relax ↵Guido van Rossum2013-10-181-4/+4
| | | | timeout in test_call_later().
* Rename the logger to plain "logger".Guido van Rossum2013-10-171-7/+7
|
* Make asyncio tests run on Windows.Guido van Rossum2013-10-171-0/+3
|
* Initial checkin of asyncio package (== Tulip, == PEP 3156).Guido van Rossum2013-10-171-0/+767