spelling errors in comments

This commit is contained in:
Adrian Sampson 2011-09-18 13:00:36 -07:00
parent 748457193b
commit 6fbe69d454
2 changed files with 3 additions and 2 deletions

View file

@ -119,7 +119,7 @@ class ThreadException(Exception):
def run(root_coro):
# The "threads" dictionary keeps track of all the currently-
# executing coroutines. It maps coroutines to their currenly
# executing coroutines. It maps coroutines to their currently
# "blocking" event.
threads = {root_coro: ValueEvent(None)}

View file

@ -25,7 +25,8 @@ os.chdir(pkgpath)
def suite():
s = unittest.TestSuite()
# get the suite() of every module in this directory begining with test_
# Get the suite() of every module in this directory beginning with
# "test_".
for fname in os.listdir(pkgpath):
match = re.match(r'(test_\S+)\.py$', fname)
if match: