]> git.ipfire.org Git - thirdparty/babel.git/commitdiff
Removed __docformat__ markers
authorArmin Ronacher <armin.ronacher@active-4.com>
Fri, 5 Jul 2013 10:57:23 +0000 (12:57 +0200)
committerArmin Ronacher <armin.ronacher@active-4.com>
Fri, 5 Jul 2013 10:57:23 +0000 (12:57 +0200)
13 files changed:
babel/__init__.py
babel/core.py
babel/dates.py
babel/localedata.py
babel/messages/catalog.py
babel/messages/extract.py
babel/messages/frontend.py
babel/messages/mofile.py
babel/messages/pofile.py
babel/numbers.py
babel/plural.py
babel/support.py
babel/util.py

index e4d9a0abfd0437fa67cb3b8e4b3bcc86870a60d6..2e34f7c7f549b10e2762d1eb2a9b07d39aa61f36 100644 (file)
@@ -28,7 +28,7 @@ This package is basically composed of two major parts:
 
 from babel.core import *
 
-__docformat__ = 'restructuredtext en'
+
 try:
     from pkg_resources import get_distribution, ResolutionError
     try:
index e3f422e1ef71d44d68d360a0d64fca0b70ab41ae..42dcf7d5d51539cd2617e456a2f87800ea6d88d3 100644 (file)
@@ -20,7 +20,7 @@ from babel import localedata
 
 __all__ = ['UnknownLocaleError', 'Locale', 'default_locale', 'negotiate_locale',
            'parse_locale']
-__docformat__ = 'restructuredtext en'
+
 
 _global_data = None
 
index 8b0086dfdf7d74c7b9610e084a4b4359aaf0c214..642195b92e38a274074098b1c21ca4abffac3570 100644 (file)
@@ -30,7 +30,7 @@ from babel.util import UTC
 
 __all__ = ['format_date', 'format_datetime', 'format_time', 'format_timedelta',
            'get_timezone_name', 'parse_date', 'parse_datetime', 'parse_time']
-__docformat__ = 'restructuredtext en'
+
 
 LC_TIME = default_locale('LC_TIME')
 
index 0433a9f3519f35df93488eabaf23f7294ec9161d..ee63a07a355a753210768691bddcb4af829deb6d 100644 (file)
@@ -24,7 +24,7 @@ from UserDict import DictMixin
 from babel.compat import threading
 
 __all__ = ['exists', 'locale_identifiers', 'load']
-__docformat__ = 'restructuredtext en'
+
 
 _cache = {}
 _cache_lock = threading.RLock()
index de991fa2092d4846448ddfcfe8def6e752bb3db8..0d454e5765f642dc0ef9e57c3b55485275479253 100644 (file)
@@ -28,7 +28,7 @@ from babel.messages.plurals import get_plural
 from babel.util import odict, distinct, LOCALTZ, UTC, FixedOffsetTimezone
 
 __all__ = ['Message', 'Catalog', 'TranslationError']
-__docformat__ = 'restructuredtext en'
+
 
 
 PYTHON_FORMAT = re.compile(r'''(?x)
index 018d41bafaee0ed7d3c90e0be6997cc623edd96c..11ae46c361fc12a692334f019e1dffe3c2d8a05f 100644 (file)
@@ -29,7 +29,7 @@ from babel.util import parse_encoding, pathmatch, relpath
 from textwrap import dedent
 
 __all__ = ['extract', 'extract_from_dir', 'extract_from_file']
-__docformat__ = 'restructuredtext en'
+
 
 GROUP_NAME = 'babel.extractors'
 
index 350e81d5da16ab36885802c27520a51da2151125..90d01a451916d7f155eaf123d690c891a41bc81f 100755 (executable)
@@ -41,7 +41,7 @@ from babel.util import odict, LOCALTZ
 
 __all__ = ['CommandLineInterface', 'compile_catalog', 'extract_messages',
            'init_catalog', 'check_message_extractors', 'update_catalog']
-__docformat__ = 'restructuredtext en'
+
 
 
 class compile_catalog(Command):
index 4a21eff66925c47edc8977d45bceafcc19dafb07..55d9368a948cbdb91ac5f3c653a388007c448f6b 100644 (file)
@@ -24,7 +24,7 @@ import struct
 from babel.messages.catalog import Catalog, Message
 
 __all__ = ['read_mo', 'write_mo']
-__docformat__ = 'restructuredtext en'
+
 
 
 LE_MAGIC = 0x950412deL
index 3afbaa39cf0b8a5767feb332c1523d3c9217f30a..49cabca34a6ee77da37f410233bbed4aa8e18230 100644 (file)
@@ -25,7 +25,7 @@ from babel.messages.catalog import Catalog, Message
 from babel.util import wraptext
 
 __all__ = ['read_po', 'write_po']
-__docformat__ = 'restructuredtext en'
+
 
 def unescape(string):
     r"""Reverse `escape` the given string.
index 4ee9a705cce132718d0cc43923d1ad42dd854ccd..c8980c7b6587ad1c99845671a8b3c1ed2e2fd333 100644 (file)
@@ -32,7 +32,7 @@ from babel.core import default_locale, Locale
 __all__ = ['format_number', 'format_decimal', 'format_currency',
            'format_percent', 'format_scientific', 'parse_number',
            'parse_decimal', 'NumberFormatError']
-__docformat__ = 'restructuredtext en'
+
 
 LC_NUMERIC = default_locale('LC_NUMERIC')
 
index e298219120363f26915c119f95853a6ad0b73226..ba1fe52a9df39d398d870180d1c5efe313f03107 100644 (file)
@@ -17,7 +17,7 @@ import re
 
 __all__ = ['PluralRule', 'RuleError', 'to_gettext', 'to_javascript',
            'to_python']
-__docformat__ = 'restructuredtext en'
+
 
 
 _plural_tags = ('zero', 'one', 'two', 'few', 'many', 'other')
index cde1448b5e9639c0169a8ddd20879cbc8e66e463..80f015cff43d17584cd801bdc9522fbc42cd6791 100644 (file)
@@ -29,7 +29,7 @@ from babel.numbers import format_number, format_decimal, format_currency, \
 from babel.util import UTC
 
 __all__ = ['Format', 'LazyProxy', 'NullTranslations', 'Translations']
-__docformat__ = 'restructuredtext en'
+
 
 
 class Format(object):
index 14e83844e3ceccceb584e1492f6a08f3c7975072..8eb7f697de3bd2e03a25eebff5cdf9dd5b9ec086 100644 (file)
@@ -25,7 +25,7 @@ missing = object()
 
 __all__ = ['distinct', 'pathmatch', 'relpath', 'wraptext', 'odict', 'UTC',
            'LOCALTZ']
-__docformat__ = 'restructuredtext en'
+
 
 
 def distinct(iterable):