Blame SOURCES/python-2.5.1-plural-fix.patch

ae2451
diff -up Python-2.5.1/Lib/gettext.py.plural Python-2.5.1/Lib/gettext.py
ae2451
--- Python-2.5.1/Lib/gettext.py.plural	2007-09-10 11:38:57.000000000 -0400
ae2451
+++ Python-2.5.1/Lib/gettext.py	2007-09-10 11:39:00.000000000 -0400
ae2451
@@ -299,6 +299,8 @@ class GNUTranslations(NullTranslations):
ae2451
                     item = item.strip()
ae2451
                     if not item:
ae2451
                         continue
ae2451
+                    if item.startswith("#"):
ae2451
+                        continue
ae2451
                     if ':' in item:
ae2451
                         k, v = item.split(':', 1)
ae2451
                         k = k.strip().lower()