summaryrefslogtreecommitdiff
Commit message (Expand)AuthorAgeFilesLines
* Bump version in setup.py.3.4.1Guido van Rossum2014-05-191-1/+1
* Added tag 3.4.1 for changeset e6084a6ff3bbGuido van Rossum2014-05-190-0/+0
* Add option to randomize test order.Guido van Rossum2014-05-191-0/+17
* Fix test failures by not cleaning up watcher in test for issue #168.Guido van Rossum2014-05-131-6/+9
* Fix issue 168: StreamReader.read(-1) from pipe may hang if data exceeds buffe...Guido van Rossum2014-05-123-7/+48
* Removed dead code path in _run_once.schlamar2014-05-101-5/+1
* Fix the second half of bugs.python.org/issue21447: race in _write_to_self().Guido van Rossum2014-05-062-6/+14
* Simple echo client/server example (for Twitter thread).Guido van Rossum2014-05-042-0/+36
* Add __weakref__ slots to Handle and CoroWrapper. Fixes issue #166.Guido van Rossum2014-04-274-2/+16
* Be careful accessing instance variables in __del__ (CPython issue 21340).Guido van Rossum2014-04-271-1/+3
* Remove superfluous and useless line.Guido van Rossum2014-04-181-1/+0
* Add gi_{frame,running,code} properties to CoroWrapper. Fixes issue #163.Guido van Rossum2014-04-152-0/+59
* tasks: Make sure CoroWrapper.send proxies one argument correctlyYury Selivanov2014-04-152-0/+20
* tasks: Fix CoroWrapper to workaround yield-from bug in CPythonYury Selivanov2014-04-142-1/+29
* EventLoop.create_unix_server() now raises a ValueError if path and sock areVictor Stinner2014-04-052-0/+15
* Fix bad grammar.Guido van Rossum2014-03-311-2/+2
* Document Task.cancel() properly.Guido van Rossum2014-03-311-0/+19
* Pull in Solaris devpoll support by Giampaolo Rodola'.Guido van Rossum2014-03-241-1/+61
* Ensure call_soon(), call_later() and call_at() are invoked on current loop inVictor Stinner2014-03-212-1/+45
* Back out inplace default for build_ext. See issue #116.Guido van Rossum2014-03-142-5/+3
* Issue #157: Improve test_events.py, avoid run_briefly() which is not reliableVictor Stinner2014-03-062-73/+71
* Skip test_remove_fds_after_closing() for IocpEventLoopVictor Stinner2014-03-061-0/+3
* Fix ResourceWarning warningsVictor Stinner2014-03-061-0/+4
* Issue #159: Fix windows_utils.socketpair()Victor Stinner2014-03-052-6/+38
* Remove egg info in "make clean".Guido van Rossum2014-03-051-0/+1
* Reject add/remove reader/writer when event loop is closed.Guido van Rossum2014-03-042-0/+28
* Issue #158: Task._step() now also sets self to None if an exception is raised.Victor Stinner2014-03-041-1/+1
* Another tiny crawl.py cleanup.Guido van Rossum2014-03-031-0/+2
* Use public interfaces to get the fileno(). Fix a typo.Guido van Rossum2014-03-031-4/+4
* tcp_echo.py: add --iocp command line option to use IOCP event loop on WindowsVictor Stinner2014-02-261-2/+13
* windows_events.py: use more revelant names to overlapped callbacksVictor Stinner2014-02-261-10/+10
* cleanup: write the long line as a single lineVictor Stinner2014-02-261-2/+1
* Simplify test_events.py, don't use non local variables and don't call assertVictor Stinner2014-02-261-186/+79
* Fix pyflakes warnings: remove unused variables and importsVictor Stinner2014-02-2615-30/+10
* Cleanup test_unix_events.py (indentation)Victor Stinner2014-02-261-9/+6
* Replace "unittest.mock" with "mock" in unit testsVictor Stinner2014-02-2613-386/+386
* Add COPYING: Apache License version 2.0Victor Stinner2014-02-261-0/+201
* Added tag 0.4.1 for changeset 429bf62d2636Guido van Rossum2014-02-240-0/+0
* Release asyncio version 0.4.1, identical to CPython 3.4.0rc2.0.4.1Guido van Rossum2014-02-241-1/+1
* _check_resolved_address() must also accept IPv6 without flow_info and scope_id:Victor Stinner2014-02-202-4/+7
* Remove debug codeVictor Stinner2014-02-201-1/+0
* Oops, and now fix also the unit test for IPv6 address: test_sock_connect_addr...Victor Stinner2014-02-201-4/+3
* Fix _check_resolved_address() for IPv6 addressVictor Stinner2014-02-201-2/+5
* asyncio: remove unused imports and unused variables noticed by pyflakesVictor Stinner2014-02-207-11/+2
* asyncio: Fix _ProactorWritePipeTransport._pipe_closed()Victor Stinner2014-02-201-1/+1
* asyncio.subprocess: Fix a race condition in communicate()Victor Stinner2014-02-201-2/+1
* Issue #136: Add get/set_debug() methods to BaseEventLoopTests. Add also aVictor Stinner2014-02-195-1/+53
* Fix tests on UNIX sockets on Mac OS X 10.4 (Tiger): don't test the socknameVictor Stinner2014-02-191-5/+27
* WriteTransport.set_write_buffer_size to call _maybe_pause_protocol (closes is...Yury Selivanov2014-02-192-2/+29
* pep8-ify the code.Yury Selivanov2014-02-186-13/+28