author | Alexandre Fayolle <alexandre.fayolle@logilab.fr> |
Mon, 12 Apr 2010 15:11:23 +0200 | |
branch | stable |
changeset 5215 | b1327f19d23e |
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