Fix parsing of exception_hierarchy.txt when a platform-specific exception is
specified.  Hopefully this wll bring warming to Tim's Windows-loving heart.
diff --git a/Lib/test/test_pep352.py b/Lib/test/test_pep352.py
index 234d671..251e0be 100644
--- a/Lib/test/test_pep352.py
+++ b/Lib/test/test_pep352.py
@@ -42,6 +42,7 @@
                 if '(' in exc_name:
                     paren_index = exc_name.index('(')
                     platform_name = exc_name[paren_index+1:-1]
+                    exc_name = exc_name[:paren_index-1]  # Slice off space
                     if platform_system() != platform_name:
                         exc_set.discard(exc_name)
                         continue