*** 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.wantTk = 1
import TkGlobal
from Tkinter import *
import Tkinter
import EntryScale
import Pmw
# Create toplevel if needed

View File

@ -52,6 +52,8 @@ class ShowBase:
self.wantStats = self.config.GetBool('want-stats', 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)
# Set up the TaskManager to reset the PStats clock back

View File

@ -312,6 +312,7 @@ class TaskManager:
if (TaskManager.notify == None):
TaskManager.notify = directNotify.newCategory("TaskManager")
self.taskTimerVerbose = 0
self.extendedExceptions = 0
self.pStatsTasks = 0
self.resumeFunc = None
self.fVerbose = 0
@ -501,9 +502,11 @@ class TaskManager:
except KeyboardInterrupt:
self.stop()
except:
# self.stop()
# print_exc_plus()
raise
if self.extendedExceptions:
self.stop()
print_exc_plus()
else:
raise
def stop(self):
# Set a flag so we will stop before beginning next frame