Fixed gettext module for Windows. The metadata lines always end in \n and not in os.linesep
diff --git a/Lib/gettext.py b/Lib/gettext.py
index 533be3d..8ff0a80 100644
--- a/Lib/gettext.py
+++ b/Lib/gettext.py
@@ -291,7 +291,7 @@
             if mlen == 0:
                 # Catalog description
                 lastk = k = None
-                for b_item in tmsg.split(os.linesep.encode("ascii")):
+                for b_item in tmsg.split('\n'.encode("ascii")):
                     item = str(b_item).strip()
                     if not item:
                         continue