linkchecker/TODO
2000-03-20 20:19:34 +00:00

8 lines
405 B
Text

(1) I want to be able to supply a "break" command even when multiple
threads are running.
So a thread has to check regularly if a break command was issued? No,
I do not want this. The thread has to be interrupted from outside, but
there is at the moment no way how to do this with Python threads. What I
am doing is to call sys.exit(1). This kills the entire Python interpreter.
(2) Internationalization