/src/cpython/Modules/_localemodule.c
Line | Count | Source (jump to first uncovered line) |
1 | | /*********************************************************** |
2 | | Copyright (C) 1997, 2002, 2003, 2007, 2008 Martin von Loewis |
3 | | |
4 | | Permission to use, copy, modify, and distribute this software and its |
5 | | documentation for any purpose and without fee is hereby granted, |
6 | | provided that the above copyright notice appear in all copies. |
7 | | |
8 | | This software comes with no warranty. Use at your own risk. |
9 | | |
10 | | ******************************************************************/ |
11 | | |
12 | | #include "Python.h" |
13 | | #include "pycore_fileutils.h" // _Py_GetLocaleconvNumeric() |
14 | | #include "pycore_pymem.h" // _PyMem_Strdup() |
15 | | |
16 | | #include <locale.h> // setlocale() |
17 | | #include <string.h> // strlen() |
18 | | #ifdef HAVE_ERRNO_H |
19 | | # include <errno.h> // errno |
20 | | #endif |
21 | | #ifdef HAVE_LANGINFO_H |
22 | | # include <langinfo.h> // nl_langinfo() |
23 | | #endif |
24 | | #ifdef HAVE_LIBINTL_H |
25 | | # include <libintl.h> |
26 | | #endif |
27 | | #ifdef MS_WINDOWS |
28 | | # ifndef WIN32_LEAN_AND_MEAN |
29 | | # define WIN32_LEAN_AND_MEAN |
30 | | # endif |
31 | | # include <windows.h> |
32 | | #endif |
33 | | |
34 | | PyDoc_STRVAR(locale__doc__, "Support for POSIX locales."); |
35 | | |
36 | | typedef struct _locale_state { |
37 | | PyObject *Error; |
38 | | } _locale_state; |
39 | | |
40 | | static inline _locale_state* |
41 | | get_locale_state(PyObject *m) |
42 | 0 | { |
43 | 0 | void *state = PyModule_GetState(m); |
44 | 0 | assert(state != NULL); |
45 | 0 | return (_locale_state *)state; |
46 | 0 | } |
47 | | |
48 | | #include "clinic/_localemodule.c.h" |
49 | | |
50 | | /*[clinic input] |
51 | | module _locale |
52 | | [clinic start generated code]*/ |
53 | | /*[clinic end generated code: output=da39a3ee5e6b4b0d input=ed98569b726feada]*/ |
54 | | |
55 | | /* support functions for formatting floating-point numbers */ |
56 | | |
57 | | /* the grouping is terminated by either 0 or CHAR_MAX */ |
58 | | static PyObject* |
59 | | copy_grouping(const char* s) |
60 | 0 | { |
61 | 0 | int i; |
62 | 0 | PyObject *result, *val = NULL; |
63 | |
|
64 | 0 | if (s[0] == '\0') { |
65 | | /* empty string: no grouping at all */ |
66 | 0 | return PyList_New(0); |
67 | 0 | } |
68 | | |
69 | 0 | for (i = 0; s[i] != '\0' && s[i] != CHAR_MAX; i++) |
70 | 0 | ; /* nothing */ |
71 | |
|
72 | 0 | result = PyList_New(i+1); |
73 | 0 | if (!result) |
74 | 0 | return NULL; |
75 | | |
76 | 0 | i = -1; |
77 | 0 | do { |
78 | 0 | i++; |
79 | 0 | val = PyLong_FromLong(s[i]); |
80 | 0 | if (val == NULL) { |
81 | 0 | Py_DECREF(result); |
82 | 0 | return NULL; |
83 | 0 | } |
84 | 0 | PyList_SET_ITEM(result, i, val); |
85 | 0 | } while (s[i] != '\0' && s[i] != CHAR_MAX); |
86 | | |
87 | 0 | return result; |
88 | 0 | } |
89 | | |
90 | | #if defined(MS_WINDOWS) |
91 | | |
92 | | // 16 is the number of elements in the szCodePage field |
93 | | // of the __crt_locale_strings structure. |
94 | | #define MAX_CP_LEN 15 |
95 | | |
96 | | static int |
97 | | check_locale_name(const char *locale, const char *end) |
98 | | { |
99 | | size_t len = end ? (size_t)(end - locale) : strlen(locale); |
100 | | const char *dot = memchr(locale, '.', len); |
101 | | if (dot && locale + len - dot - 1 > MAX_CP_LEN) { |
102 | | return -1; |
103 | | } |
104 | | return 0; |
105 | | } |
106 | | |
107 | | static int |
108 | | check_locale_name_all(const char *locale) |
109 | | { |
110 | | const char *start = locale; |
111 | | while (1) { |
112 | | const char *end = strchr(start, ';'); |
113 | | if (check_locale_name(start, end) < 0) { |
114 | | return -1; |
115 | | } |
116 | | if (end == NULL) { |
117 | | break; |
118 | | } |
119 | | start = end + 1; |
120 | | } |
121 | | return 0; |
122 | | } |
123 | | #endif |
124 | | |
125 | | /*[clinic input] |
126 | | _locale.setlocale |
127 | | |
128 | | category: int |
129 | | locale: str(accept={str, NoneType}) = NULL |
130 | | / |
131 | | |
132 | | Activates/queries locale processing. |
133 | | [clinic start generated code]*/ |
134 | | |
135 | | static PyObject * |
136 | | _locale_setlocale_impl(PyObject *module, int category, const char *locale) |
137 | | /*[clinic end generated code: output=a0e777ae5d2ff117 input=dbe18f1d66c57a6a]*/ |
138 | 0 | { |
139 | 0 | char *result; |
140 | 0 | PyObject *result_object; |
141 | |
|
142 | | #if defined(MS_WINDOWS) |
143 | | if (category < LC_MIN || category > LC_MAX) |
144 | | { |
145 | | PyErr_SetString(get_locale_state(module)->Error, |
146 | | "invalid locale category"); |
147 | | return NULL; |
148 | | } |
149 | | if (locale) { |
150 | | if ((category == LC_ALL |
151 | | ? check_locale_name_all(locale) |
152 | | : check_locale_name(locale, NULL)) < 0) |
153 | | { |
154 | | /* Debug assertion failure on Windows. |
155 | | * _Py_BEGIN_SUPPRESS_IPH/_Py_END_SUPPRESS_IPH do not help. */ |
156 | | PyErr_SetString(get_locale_state(module)->Error, |
157 | | "unsupported locale setting"); |
158 | | return NULL; |
159 | | } |
160 | | } |
161 | | #endif |
162 | |
|
163 | 0 | if (locale) { |
164 | | /* set locale */ |
165 | 0 | result = setlocale(category, locale); |
166 | 0 | if (!result) { |
167 | | /* operation failed, no setting was changed */ |
168 | 0 | PyErr_SetString(get_locale_state(module)->Error, |
169 | 0 | "unsupported locale setting"); |
170 | 0 | return NULL; |
171 | 0 | } |
172 | 0 | result_object = PyUnicode_DecodeLocale(result, NULL); |
173 | 0 | if (!result_object) |
174 | 0 | return NULL; |
175 | 0 | } else { |
176 | | /* get locale */ |
177 | 0 | result = setlocale(category, NULL); |
178 | 0 | if (!result) { |
179 | 0 | PyErr_SetString(get_locale_state(module)->Error, |
180 | 0 | "locale query failed"); |
181 | 0 | return NULL; |
182 | 0 | } |
183 | 0 | result_object = PyUnicode_DecodeLocale(result, NULL); |
184 | 0 | } |
185 | 0 | return result_object; |
186 | 0 | } |
187 | | |
188 | | static int |
189 | | locale_is_ascii(const char *str) |
190 | 0 | { |
191 | 0 | return (strlen(str) == 1 && ((unsigned char)str[0]) <= 127); |
192 | 0 | } |
193 | | |
194 | | static int |
195 | | is_all_ascii(const char *str) |
196 | 0 | { |
197 | 0 | for (; *str; str++) { |
198 | 0 | if ((unsigned char)*str > 127) { |
199 | 0 | return 0; |
200 | 0 | } |
201 | 0 | } |
202 | 0 | return 1; |
203 | 0 | } |
204 | | |
205 | | static int |
206 | | locale_decode_monetary(PyObject *dict, struct lconv *lc) |
207 | 0 | { |
208 | 0 | #ifndef MS_WINDOWS |
209 | 0 | int change_locale; |
210 | 0 | change_locale = (!locale_is_ascii(lc->int_curr_symbol) |
211 | 0 | || !locale_is_ascii(lc->currency_symbol) |
212 | 0 | || !locale_is_ascii(lc->mon_decimal_point) |
213 | 0 | || !locale_is_ascii(lc->mon_thousands_sep)); |
214 | | |
215 | | /* Keep a copy of the LC_CTYPE locale */ |
216 | 0 | char *oldloc = NULL, *loc = NULL; |
217 | 0 | if (change_locale) { |
218 | 0 | oldloc = setlocale(LC_CTYPE, NULL); |
219 | 0 | if (!oldloc) { |
220 | 0 | PyErr_SetString(PyExc_RuntimeWarning, |
221 | 0 | "failed to get LC_CTYPE locale"); |
222 | 0 | return -1; |
223 | 0 | } |
224 | | |
225 | 0 | oldloc = _PyMem_Strdup(oldloc); |
226 | 0 | if (!oldloc) { |
227 | 0 | PyErr_NoMemory(); |
228 | 0 | return -1; |
229 | 0 | } |
230 | | |
231 | 0 | loc = setlocale(LC_MONETARY, NULL); |
232 | 0 | if (loc != NULL && strcmp(loc, oldloc) == 0) { |
233 | 0 | loc = NULL; |
234 | 0 | } |
235 | |
|
236 | 0 | if (loc != NULL) { |
237 | | /* Only set the locale temporarily the LC_CTYPE locale |
238 | | to the LC_MONETARY locale if the two locales are different and |
239 | | at least one string is non-ASCII. */ |
240 | 0 | setlocale(LC_CTYPE, loc); |
241 | 0 | } |
242 | 0 | } |
243 | | |
244 | 0 | #define GET_LOCALE_STRING(ATTR) PyUnicode_DecodeLocale(lc->ATTR, NULL) |
245 | | #else /* MS_WINDOWS */ |
246 | | /* Use _W_* fields of Windows struct lconv */ |
247 | | #define GET_LOCALE_STRING(ATTR) PyUnicode_FromWideChar(lc->_W_ ## ATTR, -1) |
248 | | #endif /* MS_WINDOWS */ |
249 | | |
250 | 0 | int res = -1; |
251 | |
|
252 | 0 | #define RESULT_STRING(ATTR) \ |
253 | 0 | do { \ |
254 | 0 | PyObject *obj; \ |
255 | 0 | obj = GET_LOCALE_STRING(ATTR); \ |
256 | 0 | if (obj == NULL) { \ |
257 | 0 | goto done; \ |
258 | 0 | } \ |
259 | 0 | if (PyDict_SetItemString(dict, Py_STRINGIFY(ATTR), obj) < 0) { \ |
260 | 0 | Py_DECREF(obj); \ |
261 | 0 | goto done; \ |
262 | 0 | } \ |
263 | 0 | Py_DECREF(obj); \ |
264 | 0 | } while (0) |
265 | |
|
266 | 0 | RESULT_STRING(int_curr_symbol); |
267 | 0 | RESULT_STRING(currency_symbol); |
268 | 0 | RESULT_STRING(mon_decimal_point); |
269 | 0 | RESULT_STRING(mon_thousands_sep); |
270 | 0 | #undef RESULT_STRING |
271 | 0 | #undef GET_LOCALE_STRING |
272 | | |
273 | 0 | res = 0; |
274 | |
|
275 | 0 | done: |
276 | 0 | #ifndef MS_WINDOWS |
277 | 0 | if (loc != NULL) { |
278 | 0 | setlocale(LC_CTYPE, oldloc); |
279 | 0 | } |
280 | 0 | PyMem_Free(oldloc); |
281 | 0 | #endif |
282 | 0 | return res; |
283 | 0 | } |
284 | | |
285 | | /*[clinic input] |
286 | | _locale.localeconv |
287 | | |
288 | | Returns numeric and monetary locale-specific parameters. |
289 | | [clinic start generated code]*/ |
290 | | |
291 | | static PyObject * |
292 | | _locale_localeconv_impl(PyObject *module) |
293 | | /*[clinic end generated code: output=43a54515e0a2aef5 input=f1132d15accf4444]*/ |
294 | 0 | { |
295 | 0 | PyObject* result; |
296 | 0 | struct lconv *lc; |
297 | 0 | PyObject *x; |
298 | |
|
299 | 0 | result = PyDict_New(); |
300 | 0 | if (!result) { |
301 | 0 | return NULL; |
302 | 0 | } |
303 | | |
304 | | /* if LC_NUMERIC is different in the C library, use saved value */ |
305 | 0 | lc = localeconv(); |
306 | | |
307 | | /* hopefully, the localeconv result survives the C library calls |
308 | | involved herein */ |
309 | |
|
310 | 0 | #define RESULT(key, obj)\ |
311 | 0 | do { \ |
312 | 0 | if (obj == NULL) \ |
313 | 0 | goto failed; \ |
314 | 0 | if (PyDict_SetItemString(result, key, obj) < 0) { \ |
315 | 0 | Py_DECREF(obj); \ |
316 | 0 | goto failed; \ |
317 | 0 | } \ |
318 | 0 | Py_DECREF(obj); \ |
319 | 0 | } while (0) |
320 | |
|
321 | | #ifdef MS_WINDOWS |
322 | | /* Use _W_* fields of Windows struct lconv */ |
323 | | #define GET_LOCALE_STRING(ATTR) PyUnicode_FromWideChar(lc->_W_ ## ATTR, -1) |
324 | | #else |
325 | 0 | #define GET_LOCALE_STRING(ATTR) PyUnicode_DecodeLocale(lc->ATTR, NULL) |
326 | 0 | #endif |
327 | 0 | #define RESULT_STRING(s)\ |
328 | 0 | do { \ |
329 | 0 | x = GET_LOCALE_STRING(s); \ |
330 | 0 | RESULT(#s, x); \ |
331 | 0 | } while (0) |
332 | |
|
333 | 0 | #define RESULT_INT(i)\ |
334 | 0 | do { \ |
335 | 0 | x = PyLong_FromLong(lc->i); \ |
336 | 0 | RESULT(#i, x); \ |
337 | 0 | } while (0) |
338 | | |
339 | | /* Monetary information: LC_MONETARY encoding */ |
340 | 0 | if (locale_decode_monetary(result, lc) < 0) { |
341 | 0 | goto failed; |
342 | 0 | } |
343 | 0 | x = copy_grouping(lc->mon_grouping); |
344 | 0 | RESULT("mon_grouping", x); |
345 | | |
346 | 0 | RESULT_STRING(positive_sign); |
347 | 0 | RESULT_STRING(negative_sign); |
348 | 0 | RESULT_INT(int_frac_digits); |
349 | 0 | RESULT_INT(frac_digits); |
350 | 0 | RESULT_INT(p_cs_precedes); |
351 | 0 | RESULT_INT(p_sep_by_space); |
352 | 0 | RESULT_INT(n_cs_precedes); |
353 | 0 | RESULT_INT(n_sep_by_space); |
354 | 0 | RESULT_INT(p_sign_posn); |
355 | 0 | RESULT_INT(n_sign_posn); |
356 | | |
357 | | /* Numeric information: LC_NUMERIC encoding */ |
358 | 0 | PyObject *decimal_point = NULL, *thousands_sep = NULL; |
359 | 0 | if (_Py_GetLocaleconvNumeric(lc, &decimal_point, &thousands_sep) < 0) { |
360 | 0 | Py_XDECREF(decimal_point); |
361 | 0 | Py_XDECREF(thousands_sep); |
362 | 0 | goto failed; |
363 | 0 | } |
364 | | |
365 | 0 | if (PyDict_SetItemString(result, "decimal_point", decimal_point) < 0) { |
366 | 0 | Py_DECREF(decimal_point); |
367 | 0 | Py_DECREF(thousands_sep); |
368 | 0 | goto failed; |
369 | 0 | } |
370 | 0 | Py_DECREF(decimal_point); |
371 | |
|
372 | 0 | if (PyDict_SetItemString(result, "thousands_sep", thousands_sep) < 0) { |
373 | 0 | Py_DECREF(thousands_sep); |
374 | 0 | goto failed; |
375 | 0 | } |
376 | 0 | Py_DECREF(thousands_sep); |
377 | |
|
378 | 0 | x = copy_grouping(lc->grouping); |
379 | 0 | RESULT("grouping", x); |
380 | | |
381 | 0 | return result; |
382 | | |
383 | 0 | failed: |
384 | 0 | Py_DECREF(result); |
385 | 0 | return NULL; |
386 | |
|
387 | 0 | #undef RESULT |
388 | 0 | #undef RESULT_STRING |
389 | 0 | #undef RESULT_INT |
390 | 0 | #undef GET_LOCALE_STRING |
391 | 0 | } |
392 | | |
393 | | #if defined(HAVE_WCSCOLL) |
394 | | |
395 | | /*[clinic input] |
396 | | _locale.strcoll |
397 | | |
398 | | os1: unicode |
399 | | os2: unicode |
400 | | / |
401 | | |
402 | | Compares two strings according to the locale. |
403 | | [clinic start generated code]*/ |
404 | | |
405 | | static PyObject * |
406 | | _locale_strcoll_impl(PyObject *module, PyObject *os1, PyObject *os2) |
407 | | /*[clinic end generated code: output=82ddc6d62c76d618 input=693cd02bcbf38dd8]*/ |
408 | 0 | { |
409 | 0 | PyObject *result = NULL; |
410 | 0 | wchar_t *ws1 = NULL, *ws2 = NULL; |
411 | | |
412 | | /* Convert the unicode strings to wchar[]. */ |
413 | 0 | ws1 = PyUnicode_AsWideCharString(os1, NULL); |
414 | 0 | if (ws1 == NULL) |
415 | 0 | goto done; |
416 | 0 | ws2 = PyUnicode_AsWideCharString(os2, NULL); |
417 | 0 | if (ws2 == NULL) |
418 | 0 | goto done; |
419 | | /* Collate the strings. */ |
420 | 0 | result = PyLong_FromLong(wcscoll(ws1, ws2)); |
421 | 0 | done: |
422 | | /* Deallocate everything. */ |
423 | 0 | if (ws1) PyMem_Free(ws1); |
424 | 0 | if (ws2) PyMem_Free(ws2); |
425 | 0 | return result; |
426 | 0 | } |
427 | | #endif |
428 | | |
429 | | #ifdef HAVE_WCSXFRM |
430 | | |
431 | | /*[clinic input] |
432 | | _locale.strxfrm |
433 | | |
434 | | string as str: unicode |
435 | | / |
436 | | |
437 | | Return a string that can be used as a key for locale-aware comparisons. |
438 | | [clinic start generated code]*/ |
439 | | |
440 | | static PyObject * |
441 | | _locale_strxfrm_impl(PyObject *module, PyObject *str) |
442 | | /*[clinic end generated code: output=3081866ebffc01af input=1378bbe6a88b4780]*/ |
443 | 0 | { |
444 | 0 | Py_ssize_t n1; |
445 | 0 | wchar_t *s = NULL, *buf = NULL; |
446 | 0 | size_t n2; |
447 | 0 | PyObject *result = NULL; |
448 | |
|
449 | 0 | s = PyUnicode_AsWideCharString(str, &n1); |
450 | 0 | if (s == NULL) |
451 | 0 | goto exit; |
452 | 0 | if (wcslen(s) != (size_t)n1) { |
453 | 0 | PyErr_SetString(PyExc_ValueError, |
454 | 0 | "embedded null character"); |
455 | 0 | goto exit; |
456 | 0 | } |
457 | | |
458 | | /* assume no change in size, first */ |
459 | 0 | n1 = n1 + 1; |
460 | 0 | buf = PyMem_New(wchar_t, n1); |
461 | 0 | if (!buf) { |
462 | 0 | PyErr_NoMemory(); |
463 | 0 | goto exit; |
464 | 0 | } |
465 | 0 | errno = 0; |
466 | 0 | n2 = wcsxfrm(buf, s, n1); |
467 | 0 | if (errno && errno != ERANGE) { |
468 | 0 | PyErr_SetFromErrno(PyExc_OSError); |
469 | 0 | goto exit; |
470 | 0 | } |
471 | 0 | if (n2 >= (size_t)n1) { |
472 | | /* more space needed */ |
473 | 0 | wchar_t * new_buf = PyMem_Realloc(buf, (n2+1)*sizeof(wchar_t)); |
474 | 0 | if (!new_buf) { |
475 | 0 | PyErr_NoMemory(); |
476 | 0 | goto exit; |
477 | 0 | } |
478 | 0 | buf = new_buf; |
479 | 0 | errno = 0; |
480 | 0 | n2 = wcsxfrm(buf, s, n2+1); |
481 | 0 | if (errno) { |
482 | 0 | PyErr_SetFromErrno(PyExc_OSError); |
483 | 0 | goto exit; |
484 | 0 | } |
485 | 0 | } |
486 | | /* The result is just a sequence of integers, they are not necessary |
487 | | Unicode code points, so PyUnicode_FromWideChar() cannot be used |
488 | | here. For example, 0xD83D 0xDC0D should not be larger than 0xFF41. |
489 | | */ |
490 | 0 | #if SIZEOF_WCHAR_T == 4 |
491 | 0 | { |
492 | | /* Some codes can exceed the range of Unicode code points |
493 | | (0 - 0x10FFFF), so they cannot be directly used in |
494 | | PyUnicode_FromKindAndData(). They should be first encoded in |
495 | | a way that preserves the lexicographical order. |
496 | | |
497 | | Codes in the range 0-0xFFFF represent themself. |
498 | | Codes larger than 0xFFFF are encoded as a pair: |
499 | | * 0x1xxxx -- the highest 16 bits |
500 | | * 0x0xxxx -- the lowest 16 bits |
501 | | */ |
502 | 0 | size_t n3 = 0; |
503 | 0 | for (size_t i = 0; i < n2; i++) { |
504 | 0 | if ((Py_UCS4)buf[i] > 0x10000u) { |
505 | 0 | n3++; |
506 | 0 | } |
507 | 0 | } |
508 | 0 | if (n3) { |
509 | 0 | n3 += n2; // no integer overflow |
510 | 0 | Py_UCS4 *buf2 = PyMem_New(Py_UCS4, n3); |
511 | 0 | if (buf2 == NULL) { |
512 | 0 | PyErr_NoMemory(); |
513 | 0 | goto exit; |
514 | 0 | } |
515 | 0 | size_t j = 0; |
516 | 0 | for (size_t i = 0; i < n2; i++) { |
517 | 0 | Py_UCS4 c = (Py_UCS4)buf[i]; |
518 | 0 | if (c > 0x10000u) { |
519 | 0 | buf2[j++] = (c >> 16) | 0x10000u; |
520 | 0 | buf2[j++] = c & 0xFFFFu; |
521 | 0 | } |
522 | 0 | else { |
523 | 0 | buf2[j++] = c; |
524 | 0 | } |
525 | 0 | } |
526 | 0 | assert(j == n3); |
527 | 0 | result = PyUnicode_FromKindAndData(PyUnicode_4BYTE_KIND, buf2, n3); |
528 | 0 | PyMem_Free(buf2); |
529 | 0 | goto exit; |
530 | 0 | } |
531 | 0 | } |
532 | 0 | #endif |
533 | 0 | result = PyUnicode_FromKindAndData(sizeof(wchar_t), buf, n2); |
534 | 0 | exit: |
535 | 0 | PyMem_Free(buf); |
536 | 0 | PyMem_Free(s); |
537 | 0 | return result; |
538 | 0 | } |
539 | | #endif |
540 | | |
541 | | #if defined(MS_WINDOWS) |
542 | | |
543 | | /*[clinic input] |
544 | | _locale._getdefaultlocale |
545 | | |
546 | | [clinic start generated code]*/ |
547 | | |
548 | | static PyObject * |
549 | | _locale__getdefaultlocale_impl(PyObject *module) |
550 | | /*[clinic end generated code: output=e6254088579534c2 input=003ea41acd17f7c7]*/ |
551 | | { |
552 | | char encoding[20]; |
553 | | char locale[100]; |
554 | | |
555 | | PyOS_snprintf(encoding, sizeof(encoding), "cp%u", GetACP()); |
556 | | |
557 | | if (GetLocaleInfoA(LOCALE_USER_DEFAULT, |
558 | | LOCALE_SISO639LANGNAME, |
559 | | locale, sizeof(locale))) { |
560 | | Py_ssize_t i = strlen(locale); |
561 | | locale[i++] = '_'; |
562 | | if (GetLocaleInfoA(LOCALE_USER_DEFAULT, |
563 | | LOCALE_SISO3166CTRYNAME, |
564 | | locale+i, (int)(sizeof(locale)-i))) |
565 | | return Py_BuildValue("ss", locale, encoding); |
566 | | } |
567 | | |
568 | | /* If we end up here, this windows version didn't know about |
569 | | ISO639/ISO3166 names (it's probably Windows 95). Return the |
570 | | Windows language identifier instead (a hexadecimal number) */ |
571 | | |
572 | | locale[0] = '0'; |
573 | | locale[1] = 'x'; |
574 | | if (GetLocaleInfoA(LOCALE_USER_DEFAULT, LOCALE_IDEFAULTLANGUAGE, |
575 | | locale+2, sizeof(locale)-2)) { |
576 | | return Py_BuildValue("ss", locale, encoding); |
577 | | } |
578 | | |
579 | | /* cannot determine the language code (very unlikely) */ |
580 | | Py_INCREF(Py_None); |
581 | | return Py_BuildValue("Os", Py_None, encoding); |
582 | | } |
583 | | #endif |
584 | | |
585 | | #ifdef HAVE_LANGINFO_H |
586 | | #define LANGINFO(X, Y) {#X, X, Y} |
587 | | static struct langinfo_constant{ |
588 | | const char *name; |
589 | | int value; |
590 | | int category; |
591 | | } langinfo_constants[] = |
592 | | { |
593 | | /* These constants should exist on any langinfo implementation */ |
594 | | LANGINFO(DAY_1, LC_TIME), |
595 | | LANGINFO(DAY_2, LC_TIME), |
596 | | LANGINFO(DAY_3, LC_TIME), |
597 | | LANGINFO(DAY_4, LC_TIME), |
598 | | LANGINFO(DAY_5, LC_TIME), |
599 | | LANGINFO(DAY_6, LC_TIME), |
600 | | LANGINFO(DAY_7, LC_TIME), |
601 | | |
602 | | LANGINFO(ABDAY_1, LC_TIME), |
603 | | LANGINFO(ABDAY_2, LC_TIME), |
604 | | LANGINFO(ABDAY_3, LC_TIME), |
605 | | LANGINFO(ABDAY_4, LC_TIME), |
606 | | LANGINFO(ABDAY_5, LC_TIME), |
607 | | LANGINFO(ABDAY_6, LC_TIME), |
608 | | LANGINFO(ABDAY_7, LC_TIME), |
609 | | |
610 | | LANGINFO(MON_1, LC_TIME), |
611 | | LANGINFO(MON_2, LC_TIME), |
612 | | LANGINFO(MON_3, LC_TIME), |
613 | | LANGINFO(MON_4, LC_TIME), |
614 | | LANGINFO(MON_5, LC_TIME), |
615 | | LANGINFO(MON_6, LC_TIME), |
616 | | LANGINFO(MON_7, LC_TIME), |
617 | | LANGINFO(MON_8, LC_TIME), |
618 | | LANGINFO(MON_9, LC_TIME), |
619 | | LANGINFO(MON_10, LC_TIME), |
620 | | LANGINFO(MON_11, LC_TIME), |
621 | | LANGINFO(MON_12, LC_TIME), |
622 | | |
623 | | LANGINFO(ABMON_1, LC_TIME), |
624 | | LANGINFO(ABMON_2, LC_TIME), |
625 | | LANGINFO(ABMON_3, LC_TIME), |
626 | | LANGINFO(ABMON_4, LC_TIME), |
627 | | LANGINFO(ABMON_5, LC_TIME), |
628 | | LANGINFO(ABMON_6, LC_TIME), |
629 | | LANGINFO(ABMON_7, LC_TIME), |
630 | | LANGINFO(ABMON_8, LC_TIME), |
631 | | LANGINFO(ABMON_9, LC_TIME), |
632 | | LANGINFO(ABMON_10, LC_TIME), |
633 | | LANGINFO(ABMON_11, LC_TIME), |
634 | | LANGINFO(ABMON_12, LC_TIME), |
635 | | |
636 | | #ifdef RADIXCHAR |
637 | | /* The following are not available with glibc 2.0 */ |
638 | | LANGINFO(RADIXCHAR, LC_NUMERIC), |
639 | | LANGINFO(THOUSEP, LC_NUMERIC), |
640 | | /* YESSTR and NOSTR are deprecated in glibc, since they are |
641 | | a special case of message translation, which should be rather |
642 | | done using gettext. So we don't expose it to Python in the |
643 | | first place. |
644 | | LANGINFO(YESSTR, LC_MESSAGES), |
645 | | LANGINFO(NOSTR, LC_MESSAGES), |
646 | | */ |
647 | | LANGINFO(CRNCYSTR, LC_MONETARY), |
648 | | #endif |
649 | | |
650 | | LANGINFO(D_T_FMT, LC_TIME), |
651 | | LANGINFO(D_FMT, LC_TIME), |
652 | | LANGINFO(T_FMT, LC_TIME), |
653 | | LANGINFO(AM_STR, LC_TIME), |
654 | | LANGINFO(PM_STR, LC_TIME), |
655 | | |
656 | | /* The following constants are available only with XPG4, but... |
657 | | OpenBSD doesn't have CODESET but has T_FMT_AMPM, and doesn't have |
658 | | a few of the others. |
659 | | Solution: ifdef-test them all. */ |
660 | | #ifdef CODESET |
661 | | LANGINFO(CODESET, LC_CTYPE), |
662 | | #endif |
663 | | #ifdef T_FMT_AMPM |
664 | | LANGINFO(T_FMT_AMPM, LC_TIME), |
665 | | #endif |
666 | | #ifdef ERA |
667 | | LANGINFO(ERA, LC_TIME), |
668 | | #endif |
669 | | #ifdef ERA_D_FMT |
670 | | LANGINFO(ERA_D_FMT, LC_TIME), |
671 | | #endif |
672 | | #ifdef ERA_D_T_FMT |
673 | | LANGINFO(ERA_D_T_FMT, LC_TIME), |
674 | | #endif |
675 | | #ifdef ERA_T_FMT |
676 | | LANGINFO(ERA_T_FMT, LC_TIME), |
677 | | #endif |
678 | | #ifdef ALT_DIGITS |
679 | | LANGINFO(ALT_DIGITS, LC_TIME), |
680 | | #endif |
681 | | #ifdef YESEXPR |
682 | | LANGINFO(YESEXPR, LC_MESSAGES), |
683 | | #endif |
684 | | #ifdef NOEXPR |
685 | | LANGINFO(NOEXPR, LC_MESSAGES), |
686 | | #endif |
687 | | #ifdef _DATE_FMT |
688 | | /* This is not available in all glibc versions that have CODESET. */ |
689 | | LANGINFO(_DATE_FMT, LC_TIME), |
690 | | #endif |
691 | | {0, 0, 0} |
692 | | }; |
693 | | |
694 | | /* Temporary make the LC_CTYPE locale to be the same as |
695 | | * the locale of the specified category. */ |
696 | | static int |
697 | | change_locale(int category, char **oldloc) |
698 | 0 | { |
699 | | /* Keep a copy of the LC_CTYPE locale */ |
700 | 0 | *oldloc = setlocale(LC_CTYPE, NULL); |
701 | 0 | if (!*oldloc) { |
702 | 0 | PyErr_SetString(PyExc_RuntimeError, "failed to get LC_CTYPE locale"); |
703 | 0 | return -1; |
704 | 0 | } |
705 | 0 | *oldloc = _PyMem_Strdup(*oldloc); |
706 | 0 | if (!*oldloc) { |
707 | 0 | PyErr_NoMemory(); |
708 | 0 | return -1; |
709 | 0 | } |
710 | | |
711 | | /* Set a new locale if it is different. */ |
712 | 0 | char *loc = setlocale(category, NULL); |
713 | 0 | if (loc == NULL || strcmp(loc, *oldloc) == 0) { |
714 | 0 | PyMem_Free(*oldloc); |
715 | 0 | *oldloc = NULL; |
716 | 0 | return 0; |
717 | 0 | } |
718 | | |
719 | 0 | setlocale(LC_CTYPE, loc); |
720 | 0 | return 1; |
721 | 0 | } |
722 | | |
723 | | /* Restore the old LC_CTYPE locale. */ |
724 | | static void |
725 | | restore_locale(char *oldloc) |
726 | 0 | { |
727 | 0 | if (oldloc != NULL) { |
728 | 0 | setlocale(LC_CTYPE, oldloc); |
729 | 0 | PyMem_Free(oldloc); |
730 | 0 | } |
731 | 0 | } |
732 | | |
733 | | #ifdef __GLIBC__ |
734 | | #if defined(ALT_DIGITS) || defined(ERA) |
735 | | static PyObject * |
736 | | decode_strings(const char *result, size_t max_count) |
737 | 0 | { |
738 | | /* Convert a sequence of NUL-separated C strings to a Python string |
739 | | * containing semicolon separated items. */ |
740 | 0 | size_t i = 0; |
741 | 0 | size_t count = 0; |
742 | 0 | for (; count < max_count && result[i]; count++) { |
743 | 0 | i += strlen(result + i) + 1; |
744 | 0 | } |
745 | 0 | char *buf = PyMem_Malloc(i); |
746 | 0 | if (buf == NULL) { |
747 | 0 | PyErr_NoMemory(); |
748 | 0 | return NULL; |
749 | 0 | } |
750 | 0 | memcpy(buf, result, i); |
751 | | /* Replace all NULs with semicolons. */ |
752 | 0 | i = 0; |
753 | 0 | while (--count) { |
754 | 0 | i += strlen(buf + i); |
755 | 0 | buf[i++] = ';'; |
756 | 0 | } |
757 | 0 | PyObject *pyresult = PyUnicode_DecodeLocale(buf, NULL); |
758 | 0 | PyMem_Free(buf); |
759 | 0 | return pyresult; |
760 | 0 | } |
761 | | #endif |
762 | | #endif |
763 | | |
764 | | /*[clinic input] |
765 | | _locale.nl_langinfo |
766 | | |
767 | | key as item: int |
768 | | / |
769 | | |
770 | | Return the value for the locale information associated with key. |
771 | | [clinic start generated code]*/ |
772 | | |
773 | | static PyObject * |
774 | | _locale_nl_langinfo_impl(PyObject *module, int item) |
775 | | /*[clinic end generated code: output=6aea457b47e077a3 input=00798143eecfeddc]*/ |
776 | 0 | { |
777 | 0 | int i; |
778 | | /* Check whether this is a supported constant. GNU libc sometimes |
779 | | returns numeric values in the char* return value, which would |
780 | | crash PyUnicode_FromString. */ |
781 | 0 | for (i = 0; langinfo_constants[i].name; i++) { |
782 | 0 | if (langinfo_constants[i].value == item) { |
783 | | /* Check NULL as a workaround for GNU libc's returning NULL |
784 | | instead of an empty string for nl_langinfo(ERA). */ |
785 | 0 | const char *result = nl_langinfo(item); |
786 | 0 | result = result != NULL ? result : ""; |
787 | 0 | char *oldloc = NULL; |
788 | 0 | if (langinfo_constants[i].category != LC_CTYPE |
789 | 0 | && *result && ( |
790 | 0 | #ifdef __GLIBC__ |
791 | | // gh-133740: Always change the locale for ALT_DIGITS and ERA |
792 | 0 | # ifdef ALT_DIGITS |
793 | 0 | item == ALT_DIGITS || |
794 | 0 | # endif |
795 | 0 | # ifdef ERA |
796 | 0 | item == ERA || |
797 | 0 | # endif |
798 | 0 | #endif |
799 | 0 | !is_all_ascii(result)) |
800 | 0 | && change_locale(langinfo_constants[i].category, &oldloc) < 0) |
801 | 0 | { |
802 | 0 | return NULL; |
803 | 0 | } |
804 | 0 | PyObject *pyresult; |
805 | 0 | #ifdef __GLIBC__ |
806 | | /* According to the POSIX specification the result must be |
807 | | * a sequence of semicolon-separated strings. |
808 | | * But in Glibc they are NUL-separated. */ |
809 | 0 | #ifdef ALT_DIGITS |
810 | 0 | if (item == ALT_DIGITS && *result) { |
811 | 0 | pyresult = decode_strings(result, 100); |
812 | 0 | } |
813 | 0 | else |
814 | 0 | #endif |
815 | 0 | #ifdef ERA |
816 | 0 | if (item == ERA && *result) { |
817 | 0 | pyresult = decode_strings(result, SIZE_MAX); |
818 | 0 | } |
819 | 0 | else |
820 | 0 | #endif |
821 | 0 | #endif |
822 | 0 | { |
823 | 0 | pyresult = PyUnicode_DecodeLocale(result, NULL); |
824 | 0 | } |
825 | 0 | restore_locale(oldloc); |
826 | 0 | return pyresult; |
827 | 0 | } |
828 | 0 | } |
829 | 0 | PyErr_SetString(PyExc_ValueError, "unsupported langinfo constant"); |
830 | 0 | return NULL; |
831 | 0 | } |
832 | | #endif /* HAVE_LANGINFO_H */ |
833 | | |
834 | | #ifdef HAVE_LIBINTL_H |
835 | | |
836 | | /*[clinic input] |
837 | | _locale.gettext |
838 | | |
839 | | msg as in: str |
840 | | / |
841 | | |
842 | | gettext(msg) -> string |
843 | | |
844 | | Return translation of msg. |
845 | | [clinic start generated code]*/ |
846 | | |
847 | | static PyObject * |
848 | | _locale_gettext_impl(PyObject *module, const char *in) |
849 | | /*[clinic end generated code: output=493bb4b38a4704fe input=949fc8efc2bb3bc3]*/ |
850 | 0 | { |
851 | 0 | return PyUnicode_DecodeLocale(gettext(in), NULL); |
852 | 0 | } |
853 | | |
854 | | /*[clinic input] |
855 | | _locale.dgettext |
856 | | |
857 | | domain: str(accept={str, NoneType}) |
858 | | msg as in: str |
859 | | / |
860 | | |
861 | | dgettext(domain, msg) -> string |
862 | | |
863 | | Return translation of msg in domain. |
864 | | [clinic start generated code]*/ |
865 | | |
866 | | static PyObject * |
867 | | _locale_dgettext_impl(PyObject *module, const char *domain, const char *in) |
868 | | /*[clinic end generated code: output=3c0cd5287b972c8f input=a277388a635109d8]*/ |
869 | 0 | { |
870 | 0 | return PyUnicode_DecodeLocale(dgettext(domain, in), NULL); |
871 | 0 | } |
872 | | |
873 | | /*[clinic input] |
874 | | _locale.dcgettext |
875 | | |
876 | | domain: str(accept={str, NoneType}) |
877 | | msg as msgid: str |
878 | | category: int |
879 | | / |
880 | | |
881 | | Return translation of msg in domain and category. |
882 | | [clinic start generated code]*/ |
883 | | |
884 | | static PyObject * |
885 | | _locale_dcgettext_impl(PyObject *module, const char *domain, |
886 | | const char *msgid, int category) |
887 | | /*[clinic end generated code: output=0f4cc4fce0aa283f input=ec5f8fed4336de67]*/ |
888 | 0 | { |
889 | 0 | return PyUnicode_DecodeLocale(dcgettext(domain,msgid,category), NULL); |
890 | 0 | } |
891 | | |
892 | | /*[clinic input] |
893 | | _locale.textdomain |
894 | | |
895 | | domain: str(accept={str, NoneType}) |
896 | | / |
897 | | |
898 | | Set the C library's textdmain to domain, returning the new domain. |
899 | | [clinic start generated code]*/ |
900 | | |
901 | | static PyObject * |
902 | | _locale_textdomain_impl(PyObject *module, const char *domain) |
903 | | /*[clinic end generated code: output=7992df06aadec313 input=66359716f5eb1d38]*/ |
904 | 0 | { |
905 | 0 | domain = textdomain(domain); |
906 | 0 | if (!domain) { |
907 | 0 | PyErr_SetFromErrno(PyExc_OSError); |
908 | 0 | return NULL; |
909 | 0 | } |
910 | 0 | return PyUnicode_DecodeLocale(domain, NULL); |
911 | 0 | } |
912 | | |
913 | | /*[clinic input] |
914 | | _locale.bindtextdomain |
915 | | |
916 | | domain: str |
917 | | dir as dirname_obj: object |
918 | | / |
919 | | |
920 | | Bind the C library's domain to dir. |
921 | | [clinic start generated code]*/ |
922 | | |
923 | | static PyObject * |
924 | | _locale_bindtextdomain_impl(PyObject *module, const char *domain, |
925 | | PyObject *dirname_obj) |
926 | | /*[clinic end generated code: output=6d6f3c7b345d785c input=c0dff085acfe272b]*/ |
927 | 0 | { |
928 | 0 | const char *dirname, *current_dirname; |
929 | 0 | PyObject *dirname_bytes = NULL, *result; |
930 | |
|
931 | 0 | if (!strlen(domain)) { |
932 | 0 | PyErr_SetString(get_locale_state(module)->Error, |
933 | 0 | "domain must be a non-empty string"); |
934 | 0 | return 0; |
935 | 0 | } |
936 | 0 | if (dirname_obj != Py_None) { |
937 | 0 | if (!PyUnicode_FSConverter(dirname_obj, &dirname_bytes)) |
938 | 0 | return NULL; |
939 | 0 | dirname = PyBytes_AsString(dirname_bytes); |
940 | 0 | } else { |
941 | 0 | dirname_bytes = NULL; |
942 | 0 | dirname = NULL; |
943 | 0 | } |
944 | 0 | current_dirname = bindtextdomain(domain, dirname); |
945 | 0 | if (current_dirname == NULL) { |
946 | 0 | PyErr_SetFromErrno(PyExc_OSError); |
947 | 0 | Py_XDECREF(dirname_bytes); |
948 | 0 | return NULL; |
949 | 0 | } |
950 | 0 | result = PyUnicode_DecodeLocale(current_dirname, NULL); |
951 | 0 | Py_XDECREF(dirname_bytes); |
952 | 0 | return result; |
953 | 0 | } |
954 | | |
955 | | #ifdef HAVE_BIND_TEXTDOMAIN_CODESET |
956 | | |
957 | | /*[clinic input] |
958 | | _locale.bind_textdomain_codeset |
959 | | |
960 | | domain: str |
961 | | codeset: str(accept={str, NoneType}) |
962 | | / |
963 | | |
964 | | Bind the C library's domain to codeset. |
965 | | [clinic start generated code]*/ |
966 | | |
967 | | static PyObject * |
968 | | _locale_bind_textdomain_codeset_impl(PyObject *module, const char *domain, |
969 | | const char *codeset) |
970 | | /*[clinic end generated code: output=fa452f9c8b1b9e89 input=23fbe3540400f259]*/ |
971 | 0 | { |
972 | 0 | codeset = bind_textdomain_codeset(domain, codeset); |
973 | 0 | if (codeset) { |
974 | 0 | return PyUnicode_DecodeLocale(codeset, NULL); |
975 | 0 | } |
976 | 0 | Py_RETURN_NONE; |
977 | 0 | } |
978 | | #endif // HAVE_BIND_TEXTDOMAIN_CODESET |
979 | | |
980 | | #endif // HAVE_LIBINTL_H |
981 | | |
982 | | |
983 | | /*[clinic input] |
984 | | _locale.getencoding |
985 | | |
986 | | Get the current locale encoding. |
987 | | [clinic start generated code]*/ |
988 | | |
989 | | static PyObject * |
990 | | _locale_getencoding_impl(PyObject *module) |
991 | | /*[clinic end generated code: output=86b326b971872e46 input=6503d11e5958b360]*/ |
992 | 0 | { |
993 | 0 | return _Py_GetLocaleEncodingObject(); |
994 | 0 | } |
995 | | |
996 | | |
997 | | static struct PyMethodDef PyLocale_Methods[] = { |
998 | | _LOCALE_SETLOCALE_METHODDEF |
999 | | _LOCALE_LOCALECONV_METHODDEF |
1000 | | #ifdef HAVE_WCSCOLL |
1001 | | _LOCALE_STRCOLL_METHODDEF |
1002 | | #endif |
1003 | | #ifdef HAVE_WCSXFRM |
1004 | | _LOCALE_STRXFRM_METHODDEF |
1005 | | #endif |
1006 | | #if defined(MS_WINDOWS) |
1007 | | _LOCALE__GETDEFAULTLOCALE_METHODDEF |
1008 | | #endif |
1009 | | #ifdef HAVE_LANGINFO_H |
1010 | | _LOCALE_NL_LANGINFO_METHODDEF |
1011 | | #endif |
1012 | | #ifdef HAVE_LIBINTL_H |
1013 | | _LOCALE_GETTEXT_METHODDEF |
1014 | | _LOCALE_DGETTEXT_METHODDEF |
1015 | | _LOCALE_DCGETTEXT_METHODDEF |
1016 | | _LOCALE_TEXTDOMAIN_METHODDEF |
1017 | | _LOCALE_BINDTEXTDOMAIN_METHODDEF |
1018 | | #ifdef HAVE_BIND_TEXTDOMAIN_CODESET |
1019 | | _LOCALE_BIND_TEXTDOMAIN_CODESET_METHODDEF |
1020 | | #endif |
1021 | | #endif |
1022 | | _LOCALE_GETENCODING_METHODDEF |
1023 | | {NULL, NULL} |
1024 | | }; |
1025 | | |
1026 | | static int |
1027 | | _locale_exec(PyObject *module) |
1028 | 0 | { |
1029 | 0 | #ifdef HAVE_LANGINFO_H |
1030 | 0 | int i; |
1031 | 0 | #endif |
1032 | 0 | #define ADD_INT(module, value) \ |
1033 | 0 | do { \ |
1034 | 0 | if (PyModule_AddIntConstant(module, #value, value) < 0) { \ |
1035 | 0 | return -1; \ |
1036 | 0 | } \ |
1037 | 0 | } while (0) |
1038 | |
|
1039 | 0 | ADD_INT(module, LC_CTYPE); |
1040 | 0 | ADD_INT(module, LC_TIME); |
1041 | 0 | ADD_INT(module, LC_COLLATE); |
1042 | 0 | ADD_INT(module, LC_MONETARY); |
1043 | | |
1044 | 0 | #ifdef LC_MESSAGES |
1045 | 0 | ADD_INT(module, LC_MESSAGES); |
1046 | 0 | #endif /* LC_MESSAGES */ |
1047 | | |
1048 | 0 | ADD_INT(module, LC_NUMERIC); |
1049 | 0 | ADD_INT(module, LC_ALL); |
1050 | 0 | ADD_INT(module, CHAR_MAX); |
1051 | | |
1052 | 0 | _locale_state *state = get_locale_state(module); |
1053 | 0 | state->Error = PyErr_NewException("locale.Error", NULL, NULL); |
1054 | 0 | if (PyModule_AddObjectRef(module, "Error", state->Error) < 0) { |
1055 | 0 | return -1; |
1056 | 0 | } |
1057 | | |
1058 | 0 | #ifdef HAVE_LANGINFO_H |
1059 | 0 | for (i = 0; langinfo_constants[i].name; i++) { |
1060 | 0 | if (PyModule_AddIntConstant(module, |
1061 | 0 | langinfo_constants[i].name, |
1062 | 0 | langinfo_constants[i].value) < 0) { |
1063 | 0 | return -1; |
1064 | 0 | } |
1065 | 0 | } |
1066 | 0 | #endif |
1067 | | |
1068 | 0 | if (PyErr_Occurred()) { |
1069 | 0 | return -1; |
1070 | 0 | } |
1071 | 0 | return 0; |
1072 | |
|
1073 | 0 | #undef ADD_INT |
1074 | 0 | } |
1075 | | |
1076 | | static struct PyModuleDef_Slot _locale_slots[] = { |
1077 | | {Py_mod_exec, _locale_exec}, |
1078 | | {Py_mod_multiple_interpreters, Py_MOD_PER_INTERPRETER_GIL_SUPPORTED}, |
1079 | | {Py_mod_gil, Py_MOD_GIL_NOT_USED}, |
1080 | | {0, NULL} |
1081 | | }; |
1082 | | |
1083 | | static int |
1084 | | locale_traverse(PyObject *module, visitproc visit, void *arg) |
1085 | 0 | { |
1086 | 0 | _locale_state *state = get_locale_state(module); |
1087 | 0 | Py_VISIT(state->Error); |
1088 | 0 | return 0; |
1089 | 0 | } |
1090 | | |
1091 | | static int |
1092 | | locale_clear(PyObject *module) |
1093 | 0 | { |
1094 | 0 | _locale_state *state = get_locale_state(module); |
1095 | 0 | Py_CLEAR(state->Error); |
1096 | 0 | return 0; |
1097 | 0 | } |
1098 | | |
1099 | | static void |
1100 | | locale_free(void *module) |
1101 | 0 | { |
1102 | 0 | locale_clear((PyObject*)module); |
1103 | 0 | } |
1104 | | |
1105 | | static struct PyModuleDef _localemodule = { |
1106 | | PyModuleDef_HEAD_INIT, |
1107 | | "_locale", |
1108 | | locale__doc__, |
1109 | | sizeof(_locale_state), |
1110 | | PyLocale_Methods, |
1111 | | _locale_slots, |
1112 | | locale_traverse, |
1113 | | locale_clear, |
1114 | | locale_free, |
1115 | | }; |
1116 | | |
1117 | | PyMODINIT_FUNC |
1118 | | PyInit__locale(void) |
1119 | 0 | { |
1120 | 0 | return PyModuleDef_Init(&_localemodule); |
1121 | 0 | } |
1122 | | |
1123 | | /* |
1124 | | Local variables: |
1125 | | c-basic-offset: 4 |
1126 | | indent-tabs-mode: nil |
1127 | | End: |
1128 | | */ |