[Python-checkins] r79926 - python/trunk/Lib/test/test_multiprocessing.py

nick.coghlan python-checkins at python.org
Sat Apr 10 17:01:55 CEST 2010


Author: nick.coghlan
Date: Sat Apr 10 17:01:54 2010
New Revision: 79926

Log:
Fix typo in comment

Modified:
   python/trunk/Lib/test/test_multiprocessing.py

Modified: python/trunk/Lib/test/test_multiprocessing.py
==============================================================================
--- python/trunk/Lib/test/test_multiprocessing.py	(original)
+++ python/trunk/Lib/test/test_multiprocessing.py	Sat Apr 10 17:01:54 2010
@@ -2037,7 +2037,7 @@
     suite = unittest.TestSuite(loadTestsFromTestCase(tc) for tc in testcases)
     # (ncoghlan): Whether or not sys.exc_clear is executed by the threading
     # module during these tests is at least platform dependent and possibly
-    # non-deterministic on any given platform. So we don't find if the listed
+    # non-deterministic on any given platform. So we don't mind if the listed
     # warnings aren't actually raised.
     with test_support.check_py3k_warnings(
             (".+__(get|set)slice__ has been removed", DeprecationWarning),


More information about the Python-checkins mailing list