Fix some typos.
[portage.git] / pym / _emerge / AsynchronousLock.py
2013-09-02 Arfrever Frehtes... Disable calls to fcntl.fcntl(…, fcntl.F_SETFD, … |...
2013-09-01 Zac MedicoUse F_GETFD/F_SETFD for FD_CLOEXEC.
2013-07-07 Zac MedicoUse sys.__std* streams for fileno().
2013-01-04 Zac MedicoEnable FD_CLOEXEC for non-blocking pipes.
2013-01-01 Zac MedicoRevert "AsynchronousLock: override _async_wait_cb"
2013-01-01 Zac MedicoAsynchronousLock: override _async_wait_cb
2012-12-31 Zac Medico_LockThread: use thread-safe EventLoop.idle_add()
2012-12-31 Zac MedicoAsynchronousTask: add _async_wait method
2012-11-30 Zac Medico_LockThread: daemon = True
2012-10-06 Zac MedicoPollScheduler: remove register/unregister methods
2012-02-12 Zac MedicoAbstractPollTask: merge _wait from subclass
2012-02-10 Zac MedicoUse IO_* constants where appropriate.
2012-02-09 Zac MedicoUse AbstractPollTask._wait_loop() more.
2012-02-08 Zac MedicoUse PollScheduler iteration method.
2012-02-08 Zac MedicoPollScheduler: glib.io_add_watch() compatibility
2012-02-07 Zac MedicoAsynchronousTask: merge _waiting from subclass
2011-12-18 Arfrever Frehtes... Fix some warnings found by pylint.
2011-12-02 Zac MedicoHandle OSError from os.read and loop if needed.
2011-12-02 Zac MedicoAsynchronousLock: use os.read/write
2011-08-25 Zac Medicopython3.2 fixes: ResourceWarning: unclosed file
2011-05-27 Zac Medico_LockProcess: fix _poll returncode v2.2.0_alpha37
2011-05-27 Zac Medico_LockProcess: remove redundant scheduler attrib
2011-05-26 Zac MedicoAsynchronousLock: check type in _poll and _cancel
2011-05-18 Zac Medico_LockProcess.unlock: assert successful returncode
2011-05-17 Zac Medicotest_asynchronous_lock: simulate SIGINT from tty
2011-05-17 Zac MedicoAsynchronousLock: implement _poll() and test
2011-05-16 Zac Medico_LockProcess: handle process failure more
2011-05-16 Zac Medico_LockProcess: handle process failure if cancelled
2011-03-17 Zac MedicoAsynchronousLock: implement _cancel
2011-03-17 Zac MedicoAsynchronousTask: add _cancel template method
2011-01-16 Zac MedicoUpdate copyright headers for touched files.
2011-01-13 Zac MedicoAsynchronousLock: use process by default
2010-10-22 Zac MedicoAsynchronousLock: protect _wait() from recursion
2010-10-22 Zac MedicoMake _LockThread.lock_obj private.
2010-10-22 Zac MedicoAsynchronousLock: assert state in unlock()
2010-10-22 Zac Medicolock-helper.py: use PORTAGE_PYM_PATH for safety
2010-10-22 Zac MedicoAsynchronousLock: use subprocess if no threads
2010-09-14 Zac MedicoAdd a new AsynchronousLock class that uses the portage...