Removed an assert that isn't too important.

This commit is contained in:
Jeremy Fincher 2005-01-12 21:07:42 +00:00
parent a65c5e65dd
commit d15e7e8d7f
1 changed files with 2 additions and 1 deletions

View File

@ -54,7 +54,8 @@ startedAt = time.time() # Just in case it doesn't get set later.
starting = False
mainThread = threading.currentThread()
assert 'MainThread' in repr(mainThread)
# ??? Should we do this? What do we gain?
# assert 'MainThread' in repr(mainThread)
def isMainThread():
return mainThread is threading.currentThread()