summaryrefslogtreecommitdiffstats
path: root/Modules/_localemodule.c
diff options
context:
space:
mode:
authorAndrew M. Kuchling <amk@amk.ca>2000-08-03 02:06:16 (GMT)
committerAndrew M. Kuchling <amk@amk.ca>2000-08-03 02:06:16 (GMT)
commite365fb8d1ff062d619f9476265e48e9ba8ab2bf6 (patch)
treecb80331534a82abbadb7d45e9f654c3e97b1b3f5 /Modules/_localemodule.c
parent14f515844d3eae2818af3f1da7b32c38d8e73078 (diff)
downloadcpython-e365fb8d1ff062d619f9476265e48e9ba8ab2bf6.zip
cpython-e365fb8d1ff062d619f9476265e48e9ba8ab2bf6.tar.gz
cpython-e365fb8d1ff062d619f9476265e48e9ba8ab2bf6.tar.bz2
Use METH_VARARGS instead of numeric constant 1 in method def. tables
Diffstat (limited to 'Modules/_localemodule.c')
-rw-r--r--Modules/_localemodule.c12
1 files changed, 8 insertions, 4 deletions
diff --git a/Modules/_localemodule.c b/Modules/_localemodule.c
index 4362ffd..0ea95e4 100644
--- a/Modules/_localemodule.c
+++ b/Modules/_localemodule.c
@@ -389,10 +389,14 @@ PyLocale_getdefaultlocale(PyObject* self, PyObject* args)
#endif
static struct PyMethodDef PyLocale_Methods[] = {
- {"setlocale", (PyCFunction) PyLocale_setlocale, 1, setlocale__doc__},
- {"localeconv", (PyCFunction) PyLocale_localeconv, 0, localeconv__doc__},
- {"strcoll", (PyCFunction) PyLocale_strcoll, 1, strcoll__doc__},
- {"strxfrm", (PyCFunction) PyLocale_strxfrm, 1, strxfrm__doc__},
+ {"setlocale", (PyCFunction) PyLocale_setlocale,
+ METH_VARARGS, setlocale__doc__},
+ {"localeconv", (PyCFunction) PyLocale_localeconv,
+ 0, localeconv__doc__},
+ {"strcoll", (PyCFunction) PyLocale_strcoll,
+ METH_VARARGS, strcoll__doc__},
+ {"strxfrm", (PyCFunction) PyLocale_strxfrm,
+ METH_VARARGS, strxfrm__doc__},
#if defined(MS_WIN32) || defined(macintosh)
{"_getdefaultlocale", (PyCFunction) PyLocale_getdefaultlocale, 0},
#endif