aboutsummaryrefslogtreecommitdiff
Commit message (Expand)AuthorAgeFilesLines
* Rename pym→lib, for better distutils-r1 interoperabilityMichał Górny2018-07-1877-12361/+0
* EventLoop: raise TypeError for unexpected call_* keyword argsZac Medico2018-07-171-0/+24
* EventLoop: use python2.7 compatible **kwargs for call_* context argZac Medico2018-07-171-4/+4
* EventLoop: add call_* context arg for python3.7 compatZac Medico2018-07-171-4/+22
* Add python2 compatible coroutine support (bug 660426)Zac Medico2018-07-111-0/+112
* {,PKG_}INSTALL_MASK: support trailing slash (bug 658322)Zac Medico2018-06-261-2/+5
* AsyncioEventLoop: exit after unhandled exception (bug 658684)Zac Medico2018-06-261-0/+31
* EventLoop.close: fix 'AttributeError: close' for python2Zac Medico2018-05-261-1/+1
* SonameDepsProcessor: fix 'set' object has no attribute 'items' (bug 656492)Zac Medico2018-05-251-4/+5
* AsyncioEventLoop: remove redundant set_wakeup_fd callZac Medico2018-05-241-2/+0
* AsyncioEventLoop: suppress BlockingIOError warning (bug 655656)Zac Medico2018-05-241-7/+30
* SonameDepsProcessor: handle internal libs without DT_SONAME (bug 646190)Zac Medico2018-05-241-3/+32
* ForkProcess: unregister SIGCHLD and wakeup_fd (bug 655656)Zac Medico2018-05-141-0/+10
* AsyncioEventLoop: suppress BlockingIOError warning during loop close (bug 655...Zac Medico2018-05-131-1/+9
* DefaultEventLoopPolicy: raise NotImplementedError, not RecursionErrorZac Medico2018-05-092-4/+25
* _wrap_loop: default to global_event_loop behaviorZac Medico2018-05-082-44/+10
* global_event_loop: use asyncio event loop (bug 654390)Zac Medico2018-05-085-2/+143
* retry: add loop parameter during decorationZac Medico2018-05-061-3/+3
* EventLoop.run_in_executor: use asyncio.wrap_futureZac Medico2018-05-061-1/+10
* asyncio: explicitly close event loops (bug 654390)Zac Medico2018-05-061-1/+4
* asyncio: add _wrap_loop helper (bug 654390)Zac Medico2018-05-065-11/+29
* Minimize _asyncio_wrapper usage (bug 654390)Zac Medico2018-05-056-12/+3
* _PortageEventLoop: add _asyncio_* properties for internal useZac Medico2018-04-303-2/+24
* AbstractPollTask: remove deprecated _read_* event parameterZac Medico2018-04-301-1/+1
* AbstractPollTask: add_reader asyncio compat (bug 654382)Zac Medico2018-04-291-5/+1
* PipeLogger: add_reader asyncio compat (bug 654382)Zac Medico2018-04-291-14/+6
* EventLoop: call add_reader/writer callbacks after pipe is closed (bug 654382)Zac Medico2018-04-291-2/+5
* AsyncScheduler: call_later asyncio compat (bug 591760)Zac Medico2018-04-292-3/+7
* SubProcess: add_child_handler asyncio compat (bug 654276)Zac Medico2018-04-292-18/+3
* PopenProcess: add_child_handler asyncio compat (bug 591760)Zac Medico2018-04-281-12/+19
* AsynchronousTask: remove unused _wait() methods (bug 653856)Zac Medico2018-04-285-50/+1
* PipeReaderBlockingIO._reader_thread: asyncio compat (bug 653856)Zac Medico2018-04-282-4/+2
* PipeReaderBlockingIO: fix deprecated _wait usage (bug 653856)Zac Medico2018-04-281-3/+6
* AsyncTaskFuture: fix deprecated _wait usage (bug 653856)Zac Medico2018-04-281-1/+4
* AsyncScheduler: fix deprecated _wait usage (bug 653856)Zac Medico2018-04-281-2/+11
* Add iter_gather function (bug 653946)Zac Medico2018-04-271-0/+73
* SchedulerInterface: expose AbstractEventLoop methods (bug 591760)Zac Medico2018-04-261-4/+30
* AsyncScheduler._poll(): fix event loop recursion (bug 591760)Zac Medico2018-04-261-1/+6
* PipeLogger._output_handler: use _async_wait() (bug 591760)Zac Medico2018-04-251-2/+3
* AsynchronousTask: add scheduler attribute (bug 653856)Zac Medico2018-04-253-2/+16
* FileDigester: use _async_waitpid (bug 591760)Zac Medico2018-04-221-2/+5
* AsyncFunction: use _async_waitpid (bug 591760)Zac Medico2018-04-221-2/+5
* test_iter_completed: fix max_load in testAsyncCancelZac Medico2018-04-221-1/+1
* EventLoop.run_until_complete: remove unneeded partialZac Medico2018-04-181-1/+1
* AsyncTaskFuture: override _wait methodZac Medico2018-04-181-0/+5
* EventLoop.run_until_complete: wait for done callbacksZac Medico2018-04-181-1/+8
* EventLoop._run_idle_callbacks: support recursive calls (bug 653508)Zac Medico2018-04-181-34/+26
* EventLoop._run_idle_callbacks: make recursive calls fatalZac Medico2018-04-171-2/+14
* EventLoop._run_idle_callbacks: remove recursion checkZac Medico2018-04-171-16/+6
* Add async_iter_completed for asyncio migration (bug 591760)Zac Medico2018-04-171-6/+55