aboutsummaryrefslogtreecommitdiff
Commit message (Expand)AuthorAgeFilesLines
* Rename pym→lib, for better distutils-r1 interoperabilityMichał Górny2018-07-181-1184/+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
* EventLoop.close: fix 'AttributeError: close' for python2Zac Medico2018-05-261-1/+1
* EventLoop.run_in_executor: use asyncio.wrap_futureZac Medico2018-05-061-1/+10
* EventLoop: call add_reader/writer callbacks after pipe is closed (bug 654382)Zac Medico2018-04-291-2/+5
* EventLoop.run_until_complete: remove unneeded partialZac Medico2018-04-181-1/+1
* 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
* EventLoop._run_idle_callbacks: make recursive callbacks fatalZac Medico2018-04-161-2/+5
* EventLoop._idle_add: use thread-safe deque appendZac Medico2018-04-161-32/+58
* EventLoop: refer to asyncio.Future (uses compat shim in python2)Zac Medico2018-04-161-2/+1
* EventLoop: eliminate thread safety from call_soonZac Medico2018-04-161-6/+14
* EventLoop: fix add_reader/writer to call source_removeZac Medico2018-04-151-0/+2
* Eventloop.run_until_complete: call asyncio.ensure_futureZac Medico2018-04-151-0/+2
* EventLoop: support add_reader/writer fd overlap (bug 649588)Zac Medico2018-04-151-10/+73
* EventLoop: fix AttributeError in add/remove_readerZac Medico2018-04-151-2/+2
* Implement AbstractEventLoop.is_running() (bug 649588)Zac Medico2018-04-151-0/+14
* Implement AbstractEventLoop.call_exception_handler (bug 649588)Zac Medico2018-04-121-0/+68
* Implement AbstractEventLoopPolicy.get_child_watcher() (bug 649588)Zac Medico2018-04-121-3/+4
* Add minimal asyncio.AbstractEventLoop implementation (bug 649588)Zac Medico2018-04-101-6/+5
* EventLoop: add call_at method for asyncio compat (bug 591760)Zac Medico2018-04-081-0/+23
* EventLoop: implement add/remove_reader/writer for asyncio compat (bug 649588)Zac Medico2018-04-081-0/+51
* EventLoop: add is_closed method for asyncio compat (bug 591760)Zac Medico2018-04-081-0/+4
* EventLoop: add get/set_debug methods for asyncio compat (bug 591760)Zac Medico2018-04-081-0/+14
* Add ForkExecutor (bug 649588)Zac Medico2018-04-021-1/+44
* EventLoop: implement time method for asyncio compat (bug 591760)Zac Medico2018-03-161-5/+14
* EventLoop: implement call_later for asyncio compat (bug 591760)Zac Medico2018-02-241-0/+28
* Eventloop: fix deadlock involving idle_add/call_soon (bug 617550)Zac Medico2017-05-051-2/+16
* Future: implement add_done_callback for asyncio compat (bug 591760)Zac Medico2017-03-261-0/+14
* EventLoop: implement call_soon for asyncio compat (bug 591760)Zac Medico2017-03-241-1/+66
* EventLoop: add run_until_complete method (bug 591760)Zac Medico2016-08-231-1/+16
* Enable consistent __future__ behavior for divisionMichał Górny2014-08-111-3/+5
* Disable calls to fcntl.fcntl(…, fcntl.F_SETFD, … | fcntl.FD_CLOEXEC) with...Arfrever Frehtes Taifersar Arahesis2013-09-021-9/+13
* Use F_GETFD/F_SETFD for FD_CLOEXEC.Zac Medico2013-09-011-8/+9
* EventLoop: qemu-user epoll quirk, bug #451326Zac Medico2013-02-251-1/+7
* Enable FD_CLOEXEC for non-blocking pipes.Zac Medico2013-01-031-2/+11
* EventLoop: enable FD_CLOEXEC on epoll fdZac Medico2013-01-031-0/+11
* EventLoop.iteration: no IO blocking if possibleZac Medico2012-12-301-4/+18
* EventLoop.iteration(): avoid busy waitingZac Medico2012-12-271-14/+40
* Add PipeReaderBlockingIO, Jython experimentation.Zac Medico2012-12-271-3/+13
* EventLoop: thread-safe idle_add and timeout_addZac Medico2012-12-261-68/+97
* EventLoop: handle Linux 2.4 errno 38 for epollZac Medico2012-11-221-8/+19
* EventLoop: fix busy loop waiting for child pidZac Medico2012-09-251-13/+17
* EventLoop: handle EINTR IOError for epollZac Medico2012-08-221-2/+4
* EventLoop: use epoll when availableZac Medico2012-08-211-7/+52
* PollScheduler: use local EventLoop (thread safe)Zac Medico2012-05-101-18/+32