mirror of
https://github.com/Hopiu/linkchecker.git
synced 2026-04-28 01:54:42 +00:00
git-svn-id: https://linkchecker.svn.sourceforge.net/svnroot/linkchecker/trunk/linkchecker@31 e7d03fd6-7b0d-0410-9947-9c21f3af8025
8 lines
405 B
Text
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
|