From: Vinay Sajip Date: Thu, 31 May 2012 11:35:13 +0000 (+0100) Subject: Changed comment on test skip. X-Git-Tag: v2.7.4rc1~780 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=c3ea4085f9f75427da48525c01184d3551f11161;p=thirdparty%2FPython%2Fcpython.git Changed comment on test skip. --- diff --git a/Lib/test/test_logging.py b/Lib/test/test_logging.py index eed5a8490295..88332b5a8549 100644 --- a/Lib/test/test_logging.py +++ b/Lib/test/test_logging.py @@ -1877,7 +1877,7 @@ class ChildLoggerTest(BaseTest): class HandlerTest(BaseTest): - @unittest.skipIf(os.name == 'nt', 'Temporarily disabled for Windows') + @unittest.skipIf(os.name == 'nt', 'WatchedFileHandler not appropriate for Windows.') @unittest.skipUnless(threading, 'Threading required for this test.') def test_race(self): # Issue #14632 refers.