author | Sylvain Thénault <sylvain.thenault@logilab.fr> |
Mon, 19 Apr 2010 15:31:24 +0200 | |
changeset 5330 | 19bc44f5f9d1 |
parent 4212 | ab6573088b4a |
child 5421 | 8167de96c523 |
permissions | -rw-r--r-- |
""" :organization: Logilab :copyright: 2001-2010 LOGILAB S.A. (Paris, FRANCE), license is LGPL v2. :contact: http://www.logilab.fr/ -- mailto:contact@logilab.fr :license: GNU Lesser General Public License, v2.1 - http://www.gnu.org/licenses """ class RepoThread(object): def __init__(self, *args): pass # XXX raise def start(self): pass def join(self): pass class LoopTask(RepoThread): def cancel(self): pass