*** empty log message ***

This commit is contained in:
Joe Shochet 2002-02-07 18:49:16 +00:00
parent 92ca831ca2
commit 043472cfb5
4 changed files with 9 additions and 4 deletions

Binary file not shown.

View File

@ -295,7 +295,7 @@ def adjust(command = None, parent = None, **kw):
base.wantDIRECT = 1 base.wantDIRECT = 1
base.wantTk = 1 base.wantTk = 1
import TkGlobal import TkGlobal
from Tkinter import * import Tkinter
import EntryScale import EntryScale
import Pmw import Pmw
# Create toplevel if needed # Create toplevel if needed

View File

@ -52,6 +52,8 @@ class ShowBase:
self.wantStats = self.config.GetBool('want-stats', 0) self.wantStats = self.config.GetBool('want-stats', 0)
taskMgr.taskTimerVerbose = self.config.GetBool('task-timer-verbose', 0) taskMgr.taskTimerVerbose = self.config.GetBool('task-timer-verbose', 0)
taskMgr.extendedExceptions = self.config.GetBool('extended-exceptions', 0)
taskMgr.pStatsTasks = self.config.GetBool('pstats-tasks', 0) taskMgr.pStatsTasks = self.config.GetBool('pstats-tasks', 0)
# Set up the TaskManager to reset the PStats clock back # Set up the TaskManager to reset the PStats clock back

View File

@ -312,6 +312,7 @@ class TaskManager:
if (TaskManager.notify == None): if (TaskManager.notify == None):
TaskManager.notify = directNotify.newCategory("TaskManager") TaskManager.notify = directNotify.newCategory("TaskManager")
self.taskTimerVerbose = 0 self.taskTimerVerbose = 0
self.extendedExceptions = 0
self.pStatsTasks = 0 self.pStatsTasks = 0
self.resumeFunc = None self.resumeFunc = None
self.fVerbose = 0 self.fVerbose = 0
@ -501,8 +502,10 @@ class TaskManager:
except KeyboardInterrupt: except KeyboardInterrupt:
self.stop() self.stop()
except: except:
# self.stop() if self.extendedExceptions:
# print_exc_plus() self.stop()
print_exc_plus()
else:
raise raise
def stop(self): def stop(self):