Update of /cvsroot/quickrip/quickrip
In directory sc8-pr-cvs1:/tmp/cvs-serv2065
Modified Files:
base.py
Log Message:
Changed
from threading import *
to
import threading
Index: base.py
===================================================================
RCS file: /cvsroot/quickrip/quickrip/base.py,v
retrieving revision 1.5
retrieving revision 1.6
diff -C2 -d -r1.5 -r1.6
*** base.py 6 Aug 2003 12:22:15 -0000 1.5
--- base.py 7 Aug 2003 02:00:28 -0000 1.6
***************
*** 11,15 ****
from __future__ import generators
! from threading import *
from time import sleep
import sys, os, re, popen2, ConfigParser, copy
--- 11,15 ----
from __future__ import generators
! import threading
from time import sleep
import sys, os, re, popen2, ConfigParser, copy
***************
*** 17,24 ****
! class CommandThread(Thread):
"""Handle threading of external commands"""
def __init__(self, command, flushbuffer):
! Thread.__init__(self)
self.command = command
self.flushbuffer = flushbuffer
--- 17,24 ----
! class CommandThread(threading.Thread):
"""Handle threading of external commands"""
def __init__(self, command, flushbuffer):
! threading.Thread.__init__(self)
self.command = command
self.flushbuffer = flushbuffer
|