annotate babel/__init__.py @ 546:b33c36615fe9

rename babel.localedata.list() to ease Python 3 transition (fixes #250)
author fschwarz
date Sat, 19 Mar 2011 19:48:23 +0000
parents 85e1beadacb0
children
rev   line source
1
f71ca60f2a4a Import of initial code base.
cmlenz
parents:
diff changeset
1 # -*- coding: utf-8 -*-
f71ca60f2a4a Import of initial code base.
cmlenz
parents:
diff changeset
2 #
530
85e1beadacb0 Update the copyright line.
jruigrok
parents: 388
diff changeset
3 # Copyright (C) 2007-2011 Edgewall Software
1
f71ca60f2a4a Import of initial code base.
cmlenz
parents:
diff changeset
4 # All rights reserved.
f71ca60f2a4a Import of initial code base.
cmlenz
parents:
diff changeset
5 #
f71ca60f2a4a Import of initial code base.
cmlenz
parents:
diff changeset
6 # This software is licensed as described in the file COPYING, which
f71ca60f2a4a Import of initial code base.
cmlenz
parents:
diff changeset
7 # you should have received as part of this distribution. The terms
f71ca60f2a4a Import of initial code base.
cmlenz
parents:
diff changeset
8 # are also available at http://babel.edgewall.org/wiki/License.
f71ca60f2a4a Import of initial code base.
cmlenz
parents:
diff changeset
9 #
f71ca60f2a4a Import of initial code base.
cmlenz
parents:
diff changeset
10 # This software consists of voluntary contributions made by many
f71ca60f2a4a Import of initial code base.
cmlenz
parents:
diff changeset
11 # individuals. For the exact contribution history, see the revision
f71ca60f2a4a Import of initial code base.
cmlenz
parents:
diff changeset
12 # history and logs, available at http://babel.edgewall.org/log/.
f71ca60f2a4a Import of initial code base.
cmlenz
parents:
diff changeset
13
f71ca60f2a4a Import of initial code base.
cmlenz
parents:
diff changeset
14 """Integrated collection of utilities that assist in internationalizing and
f71ca60f2a4a Import of initial code base.
cmlenz
parents:
diff changeset
15 localizing applications.
f71ca60f2a4a Import of initial code base.
cmlenz
parents:
diff changeset
16
f71ca60f2a4a Import of initial code base.
cmlenz
parents:
diff changeset
17 This package is basically composed of two major parts:
f71ca60f2a4a Import of initial code base.
cmlenz
parents:
diff changeset
18
f71ca60f2a4a Import of initial code base.
cmlenz
parents:
diff changeset
19 * tools to build and work with ``gettext`` message catalogs
f71ca60f2a4a Import of initial code base.
cmlenz
parents:
diff changeset
20 * a Python interface to the CLDR (Common Locale Data Repository), providing
f71ca60f2a4a Import of initial code base.
cmlenz
parents:
diff changeset
21 access to various locale display names, localized number and date
f71ca60f2a4a Import of initial code base.
cmlenz
parents:
diff changeset
22 formatting, etc.
f71ca60f2a4a Import of initial code base.
cmlenz
parents:
diff changeset
23
f71ca60f2a4a Import of initial code base.
cmlenz
parents:
diff changeset
24 :see: http://www.gnu.org/software/gettext/
f71ca60f2a4a Import of initial code base.
cmlenz
parents:
diff changeset
25 :see: http://docs.python.org/lib/module-gettext.html
f71ca60f2a4a Import of initial code base.
cmlenz
parents:
diff changeset
26 :see: http://www.unicode.org/cldr/
f71ca60f2a4a Import of initial code base.
cmlenz
parents:
diff changeset
27 """
f71ca60f2a4a Import of initial code base.
cmlenz
parents:
diff changeset
28
4
0c01c3b6af7e Fixes for the extended translations class.
cmlenz
parents: 1
diff changeset
29 from babel.core import *
1
f71ca60f2a4a Import of initial code base.
cmlenz
parents:
diff changeset
30
f71ca60f2a4a Import of initial code base.
cmlenz
parents:
diff changeset
31 __docformat__ = 'restructuredtext en'
12
a2c54ef107c2 * Removed pkg_resources/setuptools requirement from various places.
cmlenz
parents: 4
diff changeset
32 try:
388
1c54b64a93bf More graceful `__version__` initialization when Babel is not installed in a way Setuptools knows about it.
cmlenz
parents: 12
diff changeset
33 from pkg_resources import get_distribution, ResolutionError
1c54b64a93bf More graceful `__version__` initialization when Babel is not installed in a way Setuptools knows about it.
cmlenz
parents: 12
diff changeset
34 try:
1c54b64a93bf More graceful `__version__` initialization when Babel is not installed in a way Setuptools knows about it.
cmlenz
parents: 12
diff changeset
35 __version__ = get_distribution('Babel').version
1c54b64a93bf More graceful `__version__` initialization when Babel is not installed in a way Setuptools knows about it.
cmlenz
parents: 12
diff changeset
36 except ResolutionError:
1c54b64a93bf More graceful `__version__` initialization when Babel is not installed in a way Setuptools knows about it.
cmlenz
parents: 12
diff changeset
37 __version__ = None # unknown
12
a2c54ef107c2 * Removed pkg_resources/setuptools requirement from various places.
cmlenz
parents: 4
diff changeset
38 except ImportError:
388
1c54b64a93bf More graceful `__version__` initialization when Babel is not installed in a way Setuptools knows about it.
cmlenz
parents: 12
diff changeset
39 __version__ = None # unknown
Copyright (C) 2012-2017 Edgewall Software