diff options
author | Skip Montanaro <skip@pobox.com> | 2011-03-19 14:15:28 (GMT) |
---|---|---|
committer | Skip Montanaro <skip@pobox.com> | 2011-03-19 14:15:28 (GMT) |
commit | b61efd0a68a392e22e5f4a46e03b250977e6236b (patch) | |
tree | b98bee40cb949aca3c50392d72d9858487dbb890 /Lib/test/test_multiprocessing.py | |
parent | b40dea7499281b288f513fdbe17dad198eb21ffe (diff) | |
parent | a4d5b0cb620d8dfc07623f4fe2b551257217589d (diff) | |
download | cpython-b61efd0a68a392e22e5f4a46e03b250977e6236b.zip cpython-b61efd0a68a392e22e5f4a46e03b250977e6236b.tar.gz cpython-b61efd0a68a392e22e5f4a46e03b250977e6236b.tar.bz2 |
commit merge
Diffstat (limited to 'Lib/test/test_multiprocessing.py')
-rw-r--r-- | Lib/test/test_multiprocessing.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/test/test_multiprocessing.py b/Lib/test/test_multiprocessing.py index 6f36c19..139ab03 100644 --- a/Lib/test/test_multiprocessing.py +++ b/Lib/test/test_multiprocessing.py @@ -795,7 +795,7 @@ class _TestEvent(BaseTestCase): event = self.Event() wait = TimingWrapper(event.wait) - # Removed temporaily, due to API shear, this does not + # Removed temporarily, due to API shear, this does not # work with threading._Event objects. is_set == isSet self.assertEqual(event.is_set(), False) @@ -1765,7 +1765,7 @@ class _TestFinalize(BaseTestCase): util.Finalize(None, conn.send, args=('STOP',), exitpriority=-100) - # call mutliprocessing's cleanup function then exit process without + # call multiprocessing's cleanup function then exit process without # garbage collecting locals util._exit_function() conn.close() |