Home
last modified time | relevance | path

Searched refs:getdefaultlocale (Results 1 – 11 of 11) sorted by relevance

/third_party/python/Lib/
Dlocale.py534 def getdefaultlocale(envvars=('LC_ALL', 'LC_CTYPE', 'LANG', 'LANGUAGE')): function
630 _setlocale(category, _build_localename(getdefaultlocale()))
643 encoding = getdefaultlocale()[1]
1703 lang, enc = getdefaultlocale()
Dcalendar.py569 locale = _locale.getdefaultlocale()
591 locale = _locale.getdefaultlocale()
/third_party/node/deps/npm/node_modules/node-gyp/gyp/pylib/gyp/
Deasy_xml.py125 default_encoding = locale.getdefaultlocale()[1]
/third_party/node/tools/gyp/pylib/gyp/
Deasy_xml.py124 default_encoding = locale.getdefaultlocale()[1]
/third_party/python/Lib/test/
Dtest_calendar.py862 lang, enc = locale.getdefaultlocale()
Dtest_locale.py521 self.assertEqual(locale.getdefaultlocale(), (None, 'UTF-8'))
Dtest_site.py459 if locale.getdefaultlocale()[1].startswith('cp'):
/third_party/python/Doc/library/
Dlocale.rst282 .. function:: getdefaultlocale([envvars])
353 The default setting is determined by calling :func:`getdefaultlocale`.
/third_party/python/Lib/test/support/
D__init__.py1328 locale.getdefaultlocale()[1] == 'cp65001' and
/third_party/python/Doc/using/
Dcmdline.rst897 (such as Python's own :func:`locale.getdefaultlocale`).
/third_party/python/Misc/
DHISTORY26484 locale -- implement getdefaultlocale for Win32 and Macintosh
26621 New APIs in locale.py: normalize(), getdefaultlocale(), resetlocale(),