Added test skip under Windows, as not applicable there.
diff --git a/Lib/test/test_logging.py b/Lib/test/test_logging.py
index 16b3fb6..2d264f8 100644
--- a/Lib/test/test_logging.py
+++ b/Lib/test/test_logging.py
@@ -2331,6 +2331,7 @@
 
 class HandlerTest(BaseTest):
 
+    @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.