X7ROOT File Manager
Current Path:
/usr/lib/python2.7/site-packages/babel
usr
/
lib
/
python2.7
/
site-packages
/
babel
/
📁
..
📄
__init__.py
(1.3 KB)
📄
__init__.pyc
(1017 B)
📄
__init__.pyo
(1017 B)
📄
core.py
(25.54 KB)
📄
core.pyc
(27.78 KB)
📄
core.pyo
(27.78 KB)
📄
dates.py
(36.16 KB)
📄
dates.pyc
(35.22 KB)
📄
dates.pyo
(35.12 KB)
📄
global.dat
(35.47 KB)
📁
localedata
📄
localedata.py
(6.42 KB)
📄
localedata.pyc
(6.81 KB)
📄
localedata.pyo
(6.81 KB)
📁
messages
📄
numbers.py
(18.5 KB)
📄
numbers.pyc
(18.08 KB)
📄
numbers.pyo
(18.08 KB)
📄
support.py
(12.7 KB)
📄
support.pyc
(17.17 KB)
📄
support.pyo
(17.17 KB)
📄
util.py
(10.17 KB)
📄
util.pyc
(13.17 KB)
📄
util.pyo
(13.17 KB)
Editing: __init__.py
# -*- coding: utf-8 -*- # # Copyright (C) 2007-2008 Edgewall Software # All rights reserved. # # This software is licensed as described in the file COPYING, which # you should have received as part of this distribution. The terms # are also available at http://babel.edgewall.org/wiki/License. # # This software consists of voluntary contributions made by many # individuals. For the exact contribution history, see the revision # history and logs, available at http://babel.edgewall.org/log/. """Integrated collection of utilities that assist in internationalizing and localizing applications. This package is basically composed of two major parts: * tools to build and work with ``gettext`` message catalogs * a Python interface to the CLDR (Common Locale Data Repository), providing access to various locale display names, localized number and date formatting, etc. :see: http://www.gnu.org/software/gettext/ :see: http://docs.python.org/lib/module-gettext.html :see: http://www.unicode.org/cldr/ """ from babel.core import * __docformat__ = 'restructuredtext en' try: from pkg_resources import get_distribution, ResolutionError try: __version__ = get_distribution('Babel').version except ResolutionError: __version__ = None # unknown except ImportError: __version__ = None # unknown
Upload File
Create Folder