blob: 2fd44fe8e90ad3d408192ca37cdb5455a32d9bab [file] [log] [blame]
Georg Brandl116aa622007-08-15 14:28:22 +00001:mod:`locale` --- Internationalization services
2===============================================
3
4.. module:: locale
5 :synopsis: Internationalization services.
Terry Jan Reedyfa089b92016-06-11 15:02:54 -04006
Georg Brandl116aa622007-08-15 14:28:22 +00007.. moduleauthor:: Martin von Löwis <martin@v.loewis.de>
8.. sectionauthor:: Martin von Löwis <martin@v.loewis.de>
9
Terry Jan Reedyfa089b92016-06-11 15:02:54 -040010**Source code:** :source:`Lib/locale.py`
11
12--------------
Georg Brandl116aa622007-08-15 14:28:22 +000013
14The :mod:`locale` module opens access to the POSIX locale database and
15functionality. The POSIX locale mechanism allows programmers to deal with
16certain cultural issues in an application, without requiring the programmer to
17know all the specifics of each country where the software is executed.
18
19.. index:: module: _locale
20
21The :mod:`locale` module is implemented on top of the :mod:`_locale` module,
22which in turn uses an ANSI C locale implementation if available.
23
24The :mod:`locale` module defines the following exception and functions:
25
26
27.. exception:: Error
28
Petri Lehtinen395ca722011-11-05 10:18:50 +020029 Exception raised when the locale passed to :func:`setlocale` is not
30 recognized.
Georg Brandl116aa622007-08-15 14:28:22 +000031
32
Georg Brandlcd7f32b2009-06-08 09:13:45 +000033.. function:: setlocale(category, locale=None)
Georg Brandl116aa622007-08-15 14:28:22 +000034
Petri Lehtinen395ca722011-11-05 10:18:50 +020035 If *locale* is given and not ``None``, :func:`setlocale` modifies the locale
36 setting for the *category*. The available categories are listed in the data
37 description below. *locale* may be a string, or an iterable of two strings
38 (language code and encoding). If it's an iterable, it's converted to a locale
39 name using the locale aliasing engine. An empty string specifies the user's
40 default settings. If the modification of the locale fails, the exception
41 :exc:`Error` is raised. If successful, the new locale setting is returned.
Georg Brandl116aa622007-08-15 14:28:22 +000042
43 If *locale* is omitted or ``None``, the current setting for *category* is
44 returned.
45
Georg Brandlf285bcc2010-10-19 21:07:16 +000046 :func:`setlocale` is not thread-safe on most systems. Applications typically
Georg Brandl116aa622007-08-15 14:28:22 +000047 start with a call of ::
48
49 import locale
50 locale.setlocale(locale.LC_ALL, '')
51
52 This sets the locale for all categories to the user's default setting (typically
53 specified in the :envvar:`LANG` environment variable). If the locale is not
54 changed thereafter, using multithreading should not cause problems.
55
Georg Brandl116aa622007-08-15 14:28:22 +000056
57.. function:: localeconv()
58
59 Returns the database of the local conventions as a dictionary. This dictionary
60 has the following strings as keys:
61
Georg Brandl44ea77b2013-03-28 13:28:44 +010062 .. tabularcolumns:: |l|l|L|
63
Georg Brandl116aa622007-08-15 14:28:22 +000064 +----------------------+-------------------------------------+--------------------------------+
65 | Category | Key | Meaning |
66 +======================+=====================================+================================+
67 | :const:`LC_NUMERIC` | ``'decimal_point'`` | Decimal point character. |
68 +----------------------+-------------------------------------+--------------------------------+
69 | | ``'grouping'`` | Sequence of numbers specifying |
70 | | | which relative positions the |
71 | | | ``'thousands_sep'`` is |
72 | | | expected. If the sequence is |
73 | | | terminated with |
74 | | | :const:`CHAR_MAX`, no further |
75 | | | grouping is performed. If the |
76 | | | sequence terminates with a |
77 | | | ``0``, the last group size is |
78 | | | repeatedly used. |
79 +----------------------+-------------------------------------+--------------------------------+
80 | | ``'thousands_sep'`` | Character used between groups. |
81 +----------------------+-------------------------------------+--------------------------------+
82 | :const:`LC_MONETARY` | ``'int_curr_symbol'`` | International currency symbol. |
83 +----------------------+-------------------------------------+--------------------------------+
84 | | ``'currency_symbol'`` | Local currency symbol. |
85 +----------------------+-------------------------------------+--------------------------------+
86 | | ``'p_cs_precedes/n_cs_precedes'`` | Whether the currency symbol |
87 | | | precedes the value (for |
88 | | | positive resp. negative |
89 | | | values). |
90 +----------------------+-------------------------------------+--------------------------------+
91 | | ``'p_sep_by_space/n_sep_by_space'`` | Whether the currency symbol is |
92 | | | separated from the value by a |
93 | | | space (for positive resp. |
94 | | | negative values). |
95 +----------------------+-------------------------------------+--------------------------------+
96 | | ``'mon_decimal_point'`` | Decimal point used for |
97 | | | monetary values. |
98 +----------------------+-------------------------------------+--------------------------------+
99 | | ``'frac_digits'`` | Number of fractional digits |
100 | | | used in local formatting of |
101 | | | monetary values. |
102 +----------------------+-------------------------------------+--------------------------------+
103 | | ``'int_frac_digits'`` | Number of fractional digits |
104 | | | used in international |
105 | | | formatting of monetary values. |
106 +----------------------+-------------------------------------+--------------------------------+
107 | | ``'mon_thousands_sep'`` | Group separator used for |
108 | | | monetary values. |
109 +----------------------+-------------------------------------+--------------------------------+
110 | | ``'mon_grouping'`` | Equivalent to ``'grouping'``, |
111 | | | used for monetary values. |
112 +----------------------+-------------------------------------+--------------------------------+
113 | | ``'positive_sign'`` | Symbol used to annotate a |
114 | | | positive monetary value. |
115 +----------------------+-------------------------------------+--------------------------------+
116 | | ``'negative_sign'`` | Symbol used to annotate a |
117 | | | negative monetary value. |
118 +----------------------+-------------------------------------+--------------------------------+
119 | | ``'p_sign_posn/n_sign_posn'`` | The position of the sign (for |
120 | | | positive resp. negative |
121 | | | values), see below. |
122 +----------------------+-------------------------------------+--------------------------------+
123
124 All numeric values can be set to :const:`CHAR_MAX` to indicate that there is no
125 value specified in this locale.
126
127 The possible values for ``'p_sign_posn'`` and ``'n_sign_posn'`` are given below.
128
129 +--------------+-----------------------------------------+
130 | Value | Explanation |
131 +==============+=========================================+
132 | ``0`` | Currency and value are surrounded by |
133 | | parentheses. |
134 +--------------+-----------------------------------------+
135 | ``1`` | The sign should precede the value and |
136 | | currency symbol. |
137 +--------------+-----------------------------------------+
138 | ``2`` | The sign should follow the value and |
139 | | currency symbol. |
140 +--------------+-----------------------------------------+
141 | ``3`` | The sign should immediately precede the |
142 | | value. |
143 +--------------+-----------------------------------------+
144 | ``4`` | The sign should immediately follow the |
145 | | value. |
146 +--------------+-----------------------------------------+
147 | ``CHAR_MAX`` | Nothing is specified in this locale. |
148 +--------------+-----------------------------------------+
149
Victor Stinnercb064fc2018-01-15 15:58:02 +0100150 The function sets temporarily the ``LC_CTYPE`` locale to the ``LC_NUMERIC``
151 locale to decode ``decimal_point`` and ``thousands_sep`` byte strings if
152 they are non-ASCII or longer than 1 byte, and the ``LC_NUMERIC`` locale is
153 different than the ``LC_CTYPE`` locale. This temporary change affects other
154 threads.
155
156 .. versionchanged:: 3.7
157 The function now sets temporarily the ``LC_CTYPE`` locale to the
158 ``LC_NUMERIC`` locale in some cases.
159
Georg Brandl116aa622007-08-15 14:28:22 +0000160
161.. function:: nl_langinfo(option)
162
Alexandre Vassalotti711ed4a2009-07-17 10:42:05 +0000163 Return some locale-specific information as a string. This function is not
164 available on all systems, and the set of possible options might also vary
165 across platforms. The possible argument values are numbers, for which
166 symbolic constants are available in the locale module.
167
168 The :func:`nl_langinfo` function accepts one of the following keys. Most
169 descriptions are taken from the corresponding description in the GNU C
170 library.
171
172 .. data:: CODESET
173
174 Get a string with the name of the character encoding used in the
175 selected locale.
176
177 .. data:: D_T_FMT
178
Sandro Tosi964f2052012-06-02 18:22:02 +0200179 Get a string that can be used as a format string for :func:`time.strftime` to
Georg Brandl1d0a0f52011-03-06 11:09:51 +0100180 represent date and time in a locale-specific way.
Alexandre Vassalotti711ed4a2009-07-17 10:42:05 +0000181
182 .. data:: D_FMT
183
Sandro Tosi964f2052012-06-02 18:22:02 +0200184 Get a string that can be used as a format string for :func:`time.strftime` to
Alexandre Vassalotti711ed4a2009-07-17 10:42:05 +0000185 represent a date in a locale-specific way.
186
187 .. data:: T_FMT
188
Sandro Tosi964f2052012-06-02 18:22:02 +0200189 Get a string that can be used as a format string for :func:`time.strftime` to
Alexandre Vassalotti711ed4a2009-07-17 10:42:05 +0000190 represent a time in a locale-specific way.
191
192 .. data:: T_FMT_AMPM
193
Sandro Tosi964f2052012-06-02 18:22:02 +0200194 Get a format string for :func:`time.strftime` to represent time in the am/pm
Alexandre Vassalotti711ed4a2009-07-17 10:42:05 +0000195 format.
196
197 .. data:: DAY_1 ... DAY_7
198
199 Get the name of the n-th day of the week.
200
201 .. note::
202
203 This follows the US convention of :const:`DAY_1` being Sunday, not the
204 international convention (ISO 8601) that Monday is the first day of the
205 week.
206
207 .. data:: ABDAY_1 ... ABDAY_7
208
209 Get the abbreviated name of the n-th day of the week.
210
211 .. data:: MON_1 ... MON_12
212
213 Get the name of the n-th month.
214
215 .. data:: ABMON_1 ... ABMON_12
216
217 Get the abbreviated name of the n-th month.
218
219 .. data:: RADIXCHAR
220
Martin Panterd21e0b52015-10-10 10:36:22 +0000221 Get the radix character (decimal dot, decimal comma, etc.).
Alexandre Vassalotti711ed4a2009-07-17 10:42:05 +0000222
223 .. data:: THOUSEP
224
225 Get the separator character for thousands (groups of three digits).
226
227 .. data:: YESEXPR
228
229 Get a regular expression that can be used with the regex function to
230 recognize a positive response to a yes/no question.
231
232 .. note::
233
Georg Brandl60203b42010-10-06 10:11:56 +0000234 The expression is in the syntax suitable for the :c:func:`regex` function
Alexandre Vassalotti711ed4a2009-07-17 10:42:05 +0000235 from the C library, which might differ from the syntax used in :mod:`re`.
236
237 .. data:: NOEXPR
238
239 Get a regular expression that can be used with the regex(3) function to
240 recognize a negative response to a yes/no question.
241
242 .. data:: CRNCYSTR
243
244 Get the currency symbol, preceded by "-" if the symbol should appear before
245 the value, "+" if the symbol should appear after the value, or "." if the
246 symbol should replace the radix character.
247
248 .. data:: ERA
249
250 Get a string that represents the era used in the current locale.
251
252 Most locales do not define this value. An example of a locale which does
253 define this value is the Japanese one. In Japan, the traditional
254 representation of dates includes the name of the era corresponding to the
255 then-emperor's reign.
256
257 Normally it should not be necessary to use this value directly. Specifying
Sandro Tosi964f2052012-06-02 18:22:02 +0200258 the ``E`` modifier in their format strings causes the :func:`time.strftime`
Alexandre Vassalotti711ed4a2009-07-17 10:42:05 +0000259 function to use this information. The format of the returned string is not
260 specified, and therefore you should not assume knowledge of it on different
261 systems.
262
Alexandre Vassalotti711ed4a2009-07-17 10:42:05 +0000263 .. data:: ERA_D_T_FMT
264
Sandro Tosi964f2052012-06-02 18:22:02 +0200265 Get a format string for :func:`time.strftime` to represent date and time in a
Alexandre Vassalotti711ed4a2009-07-17 10:42:05 +0000266 locale-specific era-based way.
267
268 .. data:: ERA_D_FMT
269
Sandro Tosi964f2052012-06-02 18:22:02 +0200270 Get a format string for :func:`time.strftime` to represent a date in a
Georg Brandl1d0a0f52011-03-06 11:09:51 +0100271 locale-specific era-based way.
272
273 .. data:: ERA_T_FMT
274
Sandro Tosi964f2052012-06-02 18:22:02 +0200275 Get a format string for :func:`time.strftime` to represent a time in a
Alexandre Vassalotti711ed4a2009-07-17 10:42:05 +0000276 locale-specific era-based way.
277
278 .. data:: ALT_DIGITS
279
280 Get a representation of up to 100 values used to represent the values
281 0 to 99.
Georg Brandl116aa622007-08-15 14:28:22 +0000282
283
Alexandre Vassalotti711ed4a2009-07-17 10:42:05 +0000284.. function:: getdefaultlocale([envvars])
Georg Brandl116aa622007-08-15 14:28:22 +0000285
286 Tries to determine the default locale settings and returns them as a tuple of
287 the form ``(language code, encoding)``.
288
289 According to POSIX, a program which has not called ``setlocale(LC_ALL, '')``
290 runs using the portable ``'C'`` locale. Calling ``setlocale(LC_ALL, '')`` lets
291 it use the default locale as defined by the :envvar:`LANG` variable. Since we
292 do not want to interfere with the current locale setting we thus emulate the
293 behavior in the way described above.
294
295 To maintain compatibility with other platforms, not only the :envvar:`LANG`
296 variable is tested, but a list of variables given as envvars parameter. The
Georg Brandlcd7f32b2009-06-08 09:13:45 +0000297 first found to be defined will be used. *envvars* defaults to the search
298 path used in GNU gettext; it must always contain the variable name
299 ``'LANG'``. The GNU gettext search path contains ``'LC_ALL'``,
300 ``'LC_CTYPE'``, ``'LANG'`` and ``'LANGUAGE'``, in that order.
Georg Brandl116aa622007-08-15 14:28:22 +0000301
302 Except for the code ``'C'``, the language code corresponds to :rfc:`1766`.
303 *language code* and *encoding* may be ``None`` if their values cannot be
304 determined.
305
Georg Brandl116aa622007-08-15 14:28:22 +0000306
Georg Brandlcd7f32b2009-06-08 09:13:45 +0000307.. function:: getlocale(category=LC_CTYPE)
Georg Brandl116aa622007-08-15 14:28:22 +0000308
309 Returns the current setting for the given locale category as sequence containing
310 *language code*, *encoding*. *category* may be one of the :const:`LC_\*` values
311 except :const:`LC_ALL`. It defaults to :const:`LC_CTYPE`.
312
313 Except for the code ``'C'``, the language code corresponds to :rfc:`1766`.
314 *language code* and *encoding* may be ``None`` if their values cannot be
315 determined.
316
Georg Brandl116aa622007-08-15 14:28:22 +0000317
Georg Brandlcd7f32b2009-06-08 09:13:45 +0000318.. function:: getpreferredencoding(do_setlocale=True)
Georg Brandl116aa622007-08-15 14:28:22 +0000319
320 Return the encoding used for text data, according to user preferences. User
321 preferences are expressed differently on different systems, and might not be
322 available programmatically on some systems, so this function only returns a
323 guess.
324
325 On some systems, it is necessary to invoke :func:`setlocale` to obtain the user
326 preferences, so this function is not thread-safe. If invoking setlocale is not
327 necessary or desired, *do_setlocale* should be set to ``False``.
328
Victor Stinner91106cd2017-12-13 12:29:09 +0100329 On Android or in the UTF-8 mode (:option:`-X` ``utf8`` option), always
330 return ``'UTF-8'``, the locale and the *do_setlocale* argument are ignored.
331
332 .. versionchanged:: 3.7
333 The function now always returns ``UTF-8`` on Android or if the UTF-8 mode
334 is enabled.
335
Georg Brandl116aa622007-08-15 14:28:22 +0000336
337.. function:: normalize(localename)
338
339 Returns a normalized locale code for the given locale name. The returned locale
340 code is formatted for use with :func:`setlocale`. If normalization fails, the
341 original name is returned unchanged.
342
343 If the given encoding is not known, the function defaults to the default
344 encoding for the locale code just like :func:`setlocale`.
345
Georg Brandl116aa622007-08-15 14:28:22 +0000346
Georg Brandlcd7f32b2009-06-08 09:13:45 +0000347.. function:: resetlocale(category=LC_ALL)
Georg Brandl116aa622007-08-15 14:28:22 +0000348
349 Sets the locale for *category* to the default setting.
350
351 The default setting is determined by calling :func:`getdefaultlocale`.
352 *category* defaults to :const:`LC_ALL`.
353
Georg Brandl116aa622007-08-15 14:28:22 +0000354
355.. function:: strcoll(string1, string2)
356
357 Compares two strings according to the current :const:`LC_COLLATE` setting. As
358 any other compare function, returns a negative, or a positive value, or ``0``,
359 depending on whether *string1* collates before or after *string2* or is equal to
360 it.
361
362
363.. function:: strxfrm(string)
364
Mark Dickinsonc48d8342009-02-01 14:18:10 +0000365 Transforms a string to one that can be used in locale-aware
366 comparisons. For example, ``strxfrm(s1) < strxfrm(s2)`` is
367 equivalent to ``strcoll(s1, s2) < 0``. This function can be used
368 when the same string is compared repeatedly, e.g. when collating a
369 sequence of strings.
Georg Brandl116aa622007-08-15 14:28:22 +0000370
371
Garvit Khatri1cf93a72017-03-28 23:43:38 +0800372.. function:: format_string(format, val, grouping=False, monetary=False)
Georg Brandl116aa622007-08-15 14:28:22 +0000373
374 Formats a number *val* according to the current :const:`LC_NUMERIC` setting.
375 The format follows the conventions of the ``%`` operator. For floating point
376 values, the decimal point is modified if appropriate. If *grouping* is true,
377 also takes the grouping into account.
378
379 If *monetary* is true, the conversion uses monetary thousands separator and
380 grouping strings.
381
Georg Brandl116aa622007-08-15 14:28:22 +0000382 Processes formatting specifiers as in ``format % val``, but takes the current
383 locale settings into account.
384
Garvit Khatri1cf93a72017-03-28 23:43:38 +0800385 .. versionchanged:: 3.7
386 The *monetary* keyword parameter was added.
387
388
389.. function:: format(format, val, grouping=False, monetary=False)
390
Berker Peksag6dbdedb2017-04-20 07:38:43 +0300391 Please note that this function works like :meth:`format_string` but will
392 only work for exactly one ``%char`` specifier. For example, ``'%f'`` and
Victor Stinner8c663fd2017-11-08 14:44:44 -0800393 ``'%.0f'`` are both valid specifiers, but ``'%f KiB'`` is not.
Garvit Khatri1cf93a72017-03-28 23:43:38 +0800394
395 For whole format strings, use :func:`format_string`.
396
397 .. deprecated:: 3.7
Berker Peksag6dbdedb2017-04-20 07:38:43 +0300398 Use :meth:`format_string` instead.
Garvit Khatri1cf93a72017-03-28 23:43:38 +0800399
Georg Brandl116aa622007-08-15 14:28:22 +0000400
Georg Brandlcd7f32b2009-06-08 09:13:45 +0000401.. function:: currency(val, symbol=True, grouping=False, international=False)
Georg Brandl116aa622007-08-15 14:28:22 +0000402
403 Formats a number *val* according to the current :const:`LC_MONETARY` settings.
404
405 The returned string includes the currency symbol if *symbol* is true, which is
406 the default. If *grouping* is true (which is not the default), grouping is done
407 with the value. If *international* is true (which is not the default), the
408 international currency symbol is used.
409
410 Note that this function will not work with the 'C' locale, so you have to set a
411 locale via :func:`setlocale` first.
412
Georg Brandl116aa622007-08-15 14:28:22 +0000413
414.. function:: str(float)
415
416 Formats a floating point number using the same format as the built-in function
417 ``str(float)``, but takes the decimal point into account.
418
419
Antoine Pitroub64bca92014-10-23 22:52:31 +0200420.. function:: delocalize(string)
421
422 Converts a string into a normalized number string, following the
Antoine Pitrou821b5a12014-10-23 23:03:35 +0200423 :const:`LC_NUMERIC` settings.
Antoine Pitroub64bca92014-10-23 22:52:31 +0200424
425 .. versionadded:: 3.5
426
427
Georg Brandl116aa622007-08-15 14:28:22 +0000428.. function:: atof(string)
429
430 Converts a string to a floating point number, following the :const:`LC_NUMERIC`
431 settings.
432
433
434.. function:: atoi(string)
435
436 Converts a string to an integer, following the :const:`LC_NUMERIC` conventions.
437
438
439.. data:: LC_CTYPE
440
441 .. index:: module: string
442
443 Locale category for the character type functions. Depending on the settings of
444 this category, the functions of module :mod:`string` dealing with case change
445 their behaviour.
446
447
448.. data:: LC_COLLATE
449
450 Locale category for sorting strings. The functions :func:`strcoll` and
451 :func:`strxfrm` of the :mod:`locale` module are affected.
452
453
454.. data:: LC_TIME
455
456 Locale category for the formatting of time. The function :func:`time.strftime`
457 follows these conventions.
458
459
460.. data:: LC_MONETARY
461
462 Locale category for formatting of monetary values. The available options are
463 available from the :func:`localeconv` function.
464
465
466.. data:: LC_MESSAGES
467
468 Locale category for message display. Python currently does not support
469 application specific locale-aware messages. Messages displayed by the operating
470 system, like those returned by :func:`os.strerror` might be affected by this
471 category.
472
473
474.. data:: LC_NUMERIC
475
Georg Brandl502d9a52009-07-26 15:02:41 +0000476 Locale category for formatting numbers. The functions :func:`.format`,
477 :func:`atoi`, :func:`atof` and :func:`.str` of the :mod:`locale` module are
Georg Brandl116aa622007-08-15 14:28:22 +0000478 affected by that category. All other numeric formatting operations are not
479 affected.
480
481
482.. data:: LC_ALL
483
484 Combination of all locale settings. If this flag is used when the locale is
485 changed, setting the locale for all categories is attempted. If that fails for
486 any category, no category is changed at all. When the locale is retrieved using
487 this flag, a string indicating the setting for all categories is returned. This
488 string can be later used to restore the settings.
489
490
491.. data:: CHAR_MAX
492
493 This is a symbolic constant used for different values returned by
494 :func:`localeconv`.
495
Georg Brandl116aa622007-08-15 14:28:22 +0000496
497Example::
498
499 >>> import locale
Serhiy Storchakadba90392016-05-10 12:01:23 +0300500 >>> loc = locale.getlocale() # get current locale
Alexandre Vassalotti711ed4a2009-07-17 10:42:05 +0000501 # use German locale; name might vary with platform
502 >>> locale.setlocale(locale.LC_ALL, 'de_DE')
Serhiy Storchakadba90392016-05-10 12:01:23 +0300503 >>> locale.strcoll('f\xe4n', 'foo') # compare a string containing an umlaut
504 >>> locale.setlocale(locale.LC_ALL, '') # use user's preferred locale
505 >>> locale.setlocale(locale.LC_ALL, 'C') # use default (C) locale
506 >>> locale.setlocale(locale.LC_ALL, loc) # restore saved locale
Georg Brandl116aa622007-08-15 14:28:22 +0000507
508
509Background, details, hints, tips and caveats
510--------------------------------------------
511
512The C standard defines the locale as a program-wide property that may be
513relatively expensive to change. On top of that, some implementation are broken
514in such a way that frequent locale changes may cause core dumps. This makes the
515locale somewhat painful to use correctly.
516
517Initially, when a program is started, the locale is the ``C`` locale, no matter
Victor Stinnera01f1ad2012-06-06 01:37:37 +0200518what the user's preferred locale is. There is one exception: the
519:data:`LC_CTYPE` category is changed at startup to set the current locale
520encoding to the user's preferred locale encoding. The program must explicitly
521say that it wants the user's preferred locale settings for other categories by
522calling ``setlocale(LC_ALL, '')``.
Georg Brandl116aa622007-08-15 14:28:22 +0000523
524It is generally a bad idea to call :func:`setlocale` in some library routine,
525since as a side effect it affects the entire program. Saving and restoring it
526is almost as bad: it is expensive and affects other threads that happen to run
527before the settings have been restored.
528
529If, when coding a module for general use, you need a locale independent version
Guido van Rossum8d2ef872007-10-15 15:42:31 +0000530of an operation that is affected by the locale (such as
Georg Brandl116aa622007-08-15 14:28:22 +0000531certain formats used with :func:`time.strftime`), you will have to find a way to
532do it without using the standard library routine. Even better is convincing
533yourself that using locale settings is okay. Only as a last resort should you
534document that your module is not compatible with non-\ ``C`` locale settings.
535
Georg Brandl116aa622007-08-15 14:28:22 +0000536The only way to perform numeric operations according to the locale is to use the
537special functions defined by this module: :func:`atof`, :func:`atoi`,
Georg Brandl502d9a52009-07-26 15:02:41 +0000538:func:`.format`, :func:`.str`.
Georg Brandl116aa622007-08-15 14:28:22 +0000539
Guido van Rossum8d2ef872007-10-15 15:42:31 +0000540There is no way to perform case conversions and character classifications
541according to the locale. For (Unicode) text strings these are done according
542to the character value only, while for byte strings, the conversions and
543classifications are done according to the ASCII value of the byte, and bytes
544whose high bit is set (i.e., non-ASCII bytes) are never converted or considered
545part of a character class such as letter or whitespace.
546
Georg Brandl116aa622007-08-15 14:28:22 +0000547
548.. _embedding-locale:
549
550For extension writers and programs that embed Python
551----------------------------------------------------
552
553Extension modules should never call :func:`setlocale`, except to find out what
554the current locale is. But since the return value can only be used portably to
555restore it, that is not very useful (except perhaps to find out whether or not
556the locale is ``C``).
557
558When Python code uses the :mod:`locale` module to change the locale, this also
559affects the embedding application. If the embedding application doesn't want
560this to happen, it should remove the :mod:`_locale` extension module (which does
561all the work) from the table of built-in modules in the :file:`config.c` file,
562and make sure that the :mod:`_locale` module is not accessible as a shared
563library.
564
565
566.. _locale-gettext:
567
568Access to message catalogs
569--------------------------
570
Serhiy Storchakac02a1f42017-10-04 20:28:20 +0300571.. function:: gettext(msg)
572.. function:: dgettext(domain, msg)
573.. function:: dcgettext(domain, msg, category)
574.. function:: textdomain(domain)
575.. function:: bindtextdomain(domain, dir)
576
Georg Brandl116aa622007-08-15 14:28:22 +0000577The locale module exposes the C library's gettext interface on systems that
Serhiy Storchakac02a1f42017-10-04 20:28:20 +0300578provide this interface. It consists of the functions :func:`!gettext`,
579:func:`!dgettext`, :func:`!dcgettext`, :func:`!textdomain`, :func:`!bindtextdomain`,
580and :func:`!bind_textdomain_codeset`. These are similar to the same functions in
Georg Brandl116aa622007-08-15 14:28:22 +0000581the :mod:`gettext` module, but use the C library's binary format for message
582catalogs, and the C library's search algorithms for locating message catalogs.
583
584Python applications should normally find no need to invoke these functions, and
585should use :mod:`gettext` instead. A known exception to this rule are
Georg Brandl599dbfc2010-10-26 19:58:11 +0000586applications that link with additional C libraries which internally invoke
Serhiy Storchakac02a1f42017-10-04 20:28:20 +0300587:c:func:`gettext` or :c:func:`dcgettext`. For these applications, it may be
Georg Brandl116aa622007-08-15 14:28:22 +0000588necessary to bind the text domain, so that the libraries can properly locate
589their message catalogs.
590