Did I find the right examples for you? yes no Crawl my project Python Jobs
All Samples(193) | Call(97) | Derive(0) | Import(96)
Returns the system default locale for a given category, based on environment variables. >>> for name in ['LANGUAGE', 'LC_ALL', 'LC_CTYPE']: ... os.environ[name] = '' >>> os.environ['LANG'] = 'fr_FR.UTF-8' >>> default_locale('LC_MESSAGES') 'fr_FR' The "C" or "POSIX" pseudo-locales are treated as aliases for the(more...)
def default_locale(category=None, aliases=LOCALE_ALIASES): """Returns the system default locale for a given category, based on environment variables. >>> for name in ['LANGUAGE', 'LC_ALL', 'LC_CTYPE']: ... os.environ[name] = '' >>> os.environ['LANG'] = 'fr_FR.UTF-8' >>> default_locale('LC_MESSAGES') 'fr_FR' The "C" or "POSIX" pseudo-locales are treated as aliases for the "en_US_POSIX" locale: >>> os.environ['LC_MESSAGES'] = 'POSIX' >>> default_locale('LC_MESSAGES') 'en_US_POSIX' The following fallbacks to the variable are always considered: - ``LANGUAGE`` - ``LC_ALL`` - ``LC_CTYPE`` - ``LANG`` :param category: one of the ``LC_XXX`` environment variable names :param aliases: a dictionary of aliases for locale identifiers """ varnames = (category, 'LANGUAGE', 'LC_ALL', 'LC_CTYPE', 'LANG') for name in filter(None, varnames): locale = os.getenv(name) if locale: if name == 'LANGUAGE' and ':' in locale: # the LANGUAGE variable may contain a colon-separated list of # language codes; we just pick the language on the list locale = locale.split(':')[0] if locale in ('C', 'POSIX'): locale = 'en_US_POSIX' elif aliases and locale in aliases: locale = aliases[locale] try: return get_locale_identifier(parse_locale(locale)) except ValueError: pass
have_decimal = False 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')
src/p/l/playdoh-lib-HEAD/lib/python/babel/numbers.py playdoh-lib(Download)
have_decimal = False 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')
src/w/e/WebPutty-HEAD/libs/babel/numbers.py WebPutty(Download)
have_decimal = False from babel.core import default_locale, Locale from babel.util import rsplit
__docformat__ = 'restructuredtext en' LC_NUMERIC = default_locale('LC_NUMERIC') def get_currency_name(currency, locale=LC_NUMERIC):
src/b/a/Babel-CLDR-HEAD/babel/messages/plurals.py Babel-CLDR(Download)
"""Plural form definitions.""" from babel.core import default_locale, Locale from operator import itemgetter LC_CTYPE = default_locale('LC_CTYPE')
src/m/e/me-HEAD/libs/babel/numbers.py me(Download)
have_decimal = False from babel.core import default_locale, Locale from babel.util import rsplit
__docformat__ = 'restructuredtext en' LC_NUMERIC = default_locale('LC_NUMERIC') def get_currency_name(currency, locale=LC_NUMERIC):
src/b/a/babel-HEAD/babel/messages/plurals.py babel(Download)
"""Plural form definitions.""" from babel.core import default_locale, Locale from babel.util import itemgetter LC_CTYPE = default_locale('LC_CTYPE')
src/b/a/Babel-CLDR-HEAD/babel/numbers.py Babel-CLDR(Download)
have_decimal = False 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')
src/b/a/babel-HEAD/babel/numbers.py babel(Download)
have_decimal = False 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')
src/f/j/fjord-HEAD/vendor/packages/Babel/babel/__init__.py fjord(Download)
""" from babel.core import UnknownLocaleError, Locale, default_locale, \ negotiate_locale, parse_locale, get_locale_identifier
src/m/i/microblog-HEAD/flask/lib/python2.7/site-packages/babel/__init__.py microblog(Download)
""" from babel.core import UnknownLocaleError, Locale, default_locale, \ negotiate_locale, parse_locale, get_locale_identifier
Previous 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 Next