added abstract run_checked()

git-svn-id: https://linkchecker.svn.sourceforge.net/svnroot/linkchecker/trunk/linkchecker@3316 e7d03fd6-7b0d-0410-9947-9c21f3af8025
This commit is contained in:
calvin 2006-05-25 14:25:04 +00:00
parent b442809838
commit f5f7007c34

View file

@ -16,6 +16,7 @@
# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
import thread
import linkcheck
import linkcheck.decorators
import linkcheck.log
import linkcheck.threader
import console
@ -39,3 +40,9 @@ class CheckedTask (linkcheck.threader.StoppableThread):
except StandardError:
console.internal_error()
@linkcheck.decorators.notimplemented
def run_checked (self):
"""
Overload in subclass.
"""
pass