]> git.ipfire.org Git - thirdparty/babel.git/commitdiff
Some codestyle updates in babel.messages.plurals
authorArmin Ronacher <armin.ronacher@active-4.com>
Thu, 25 Jul 2013 07:30:56 +0000 (09:30 +0200)
committerArmin Ronacher <armin.ronacher@active-4.com>
Thu, 25 Jul 2013 07:30:56 +0000 (09:30 +0200)
babel/messages/mofile.py
babel/messages/plurals.py

index d409526eb1a56361806f4e6944c3c27ed6dc6fd6..5dd20aee0325ff1ce07f030eb0b1e727f5274066 100644 (file)
@@ -15,13 +15,11 @@ import struct
 from babel.messages.catalog import Catalog, Message
 from babel._compat import range_type
 
-__all__ = ['read_mo', 'write_mo']
-
-
 
 LE_MAGIC = 0x950412de
 BE_MAGIC = 0xde120495
 
+
 def read_mo(fileobj):
     """Read a binary MO file from the given file-like object and return a
     corresponding `Catalog` object.
index 9b4b4ac26662ae174f3edf4d2c1e703a597b144c..c00a211088bfbbcfa16ad1761da13a754b45d403 100644 (file)
@@ -13,6 +13,9 @@ from babel.core import default_locale, Locale
 from operator import itemgetter
 
 
+# XXX: remove this file, duplication with babel.plural
+
+
 LC_CTYPE = default_locale('LC_CTYPE')