Lines Matching defs:module

6 "setlocale($module, category, locale=<unrepresentable>, /)\n"
15 _locale_setlocale_impl(PyObject *module, int category, const char *locale);
18 _locale_setlocale(PyObject *module, PyObject *const *args, Py_ssize_t nargs)
53 return_value = _locale_setlocale_impl(module, category, locale);
60 "localeconv($module, /)\n"
69 _locale_localeconv_impl(PyObject *module);
72 _locale_localeconv(PyObject *module, PyObject *Py_UNUSED(ignored))
74 return _locale_localeconv_impl(module);
80 "strcoll($module, os1, os2, /)\n"
89 _locale_strcoll_impl(PyObject *module, PyObject *os1, PyObject *os2);
92 _locale_strcoll(PyObject *module, PyObject *const *args, Py_ssize_t nargs)
117 return_value = _locale_strcoll_impl(module, os1, os2);
128 "strxfrm($module, string, /)\n"
137 _locale_strxfrm_impl(PyObject *module, PyObject *str);
140 _locale_strxfrm(PyObject *module, PyObject *arg)
153 return_value = _locale_strxfrm_impl(module, str);
164 "_getdefaultlocale($module, /)\n"
172 _locale__getdefaultlocale_impl(PyObject *module);
175 _locale__getdefaultlocale(PyObject *module, PyObject *Py_UNUSED(ignored))
177 return _locale__getdefaultlocale_impl(module);
185 "nl_langinfo($module, key, /)\n"
194 _locale_nl_langinfo_impl(PyObject *module, int item);
197 _locale_nl_langinfo(PyObject *module, PyObject *arg)
206 return_value = _locale_nl_langinfo_impl(module, item);
217 "gettext($module, msg, /)\n"
228 _locale_gettext_impl(PyObject *module, const char *in);
231 _locale_gettext(PyObject *module, PyObject *arg)
249 return_value = _locale_gettext_impl(module, in);
260 "dgettext($module, domain, msg, /)\n"
271 _locale_dgettext_impl(PyObject *module, const char *domain, const char *in);
274 _locale_dgettext(PyObject *module, PyObject *const *args, Py_ssize_t nargs)
314 return_value = _locale_dgettext_impl(module, domain, in);
325 "dcgettext($module, domain, msg, category, /)\n"
334 _locale_dcgettext_impl(PyObject *module, const char *domain,
338 _locale_dcgettext(PyObject *module, PyObject *const *args, Py_ssize_t nargs)
383 return_value = _locale_dcgettext_impl(module, domain, msgid, category);
394 "textdomain($module, domain, /)\n"
403 _locale_textdomain_impl(PyObject *module, const char *domain);
406 _locale_textdomain(PyObject *module, PyObject *arg)
429 return_value = _locale_textdomain_impl(module, domain);
440 "bindtextdomain($module, domain, dir, /)\n"
449 _locale_bindtextdomain_impl(PyObject *module, const char *domain,
453 _locale_bindtextdomain(PyObject *module, PyObject *const *args, Py_ssize_t nargs)
476 return_value = _locale_bindtextdomain_impl(module, domain, dirname_obj);
487 "bind_textdomain_codeset($module, domain, codeset, /)\n"
496 _locale_bind_textdomain_codeset_impl(PyObject *module, const char *domain,
500 _locale_bind_textdomain_codeset(PyObject *module, PyObject *const *args, Py_ssize_t nargs)
540 return_value = _locale_bind_textdomain_codeset_impl(module, domain, codeset);
549 "getencoding($module, /)\n"
558 _locale_getencoding_impl(PyObject *module);
561 _locale_getencoding(PyObject *module, PyObject *Py_UNUSED(ignored))
563 return _locale_getencoding_impl(module);