]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Use symbolic name for METH_VARARGS.
authorGeorg Brandl <georg@python.org>
Sat, 1 Sep 2007 15:27:35 +0000 (15:27 +0000)
committerGeorg Brandl <georg@python.org>
Sat, 1 Sep 2007 15:27:35 +0000 (15:27 +0000)
Mac/Modules/MacOS.c

index 434c547d1cc8ac1a1ec105a79b1872a4018a4599..49215f52b317d65cc7f832dac775e5eca0d85d8c 100644 (file)
@@ -214,11 +214,11 @@ rf_close(rfobject *self, PyObject *args)
 
 
 static struct PyMethodDef rf_methods[] = {
- {"read",      (PyCFunction)rf_read,   1,      rf_read__doc__},
- {"write",     (PyCFunction)rf_write,  1,      rf_write__doc__},
- {"seek",      (PyCFunction)rf_seek,   1,      rf_seek__doc__},
- {"tell",      (PyCFunction)rf_tell,   1,      rf_tell__doc__},
- {"close",     (PyCFunction)rf_close,  1,      rf_close__doc__},
+ {"read",      (PyCFunction)rf_read,   METH_VARARGS,   rf_read__doc__},
+ {"write",     (PyCFunction)rf_write,  METH_VARARGS,   rf_write__doc__},
+ {"seek",      (PyCFunction)rf_seek,   METH_VARARGS,   rf_seek__doc__},
+ {"tell",      (PyCFunction)rf_tell,   METH_VARARGS,   rf_tell__doc__},
+ {"close",     (PyCFunction)rf_close,  METH_VARARGS,   rf_close__doc__},
  
        {NULL,          NULL}           /* sentinel */
 };
@@ -584,15 +584,15 @@ MacOS_openrf(PyObject *self, PyObject *args)
 
 
 static PyMethodDef MacOS_Methods[] = {
-       {"GetCreatorAndType",           MacOS_GetCreatorAndType, 1,     getcrtp_doc},
-       {"SetCreatorAndType",           MacOS_SetCreatorAndType, 1,     setcrtp_doc},
-       {"GetErrorString",              MacOS_GetErrorString,   1,      geterr_doc},
-       {"openrf",                      MacOS_openrf,           1,      openrf_doc},
-       {"splash",                      MacOS_splash,           1,      splash_doc},
-       {"DebugStr",                    MacOS_DebugStr,         1,      DebugStr_doc},
-       {"GetTicks",                    MacOS_GetTicks,         1,      GetTicks_doc},
-       {"SysBeep",                     MacOS_SysBeep,          1,      SysBeep_doc},
-       {"WMAvailable",                 MacOS_WMAvailable,              1,      WMAvailable_doc},
+       {"GetCreatorAndType",           MacOS_GetCreatorAndType, METH_VARARGS,  getcrtp_doc},
+       {"SetCreatorAndType",           MacOS_SetCreatorAndType, METH_VARARGS,  setcrtp_doc},
+       {"GetErrorString",              MacOS_GetErrorString,   METH_VARARGS,   geterr_doc},
+       {"openrf",                      MacOS_openrf,           METH_VARARGS,   openrf_doc},
+       {"splash",                      MacOS_splash,           METH_VARARGS,   splash_doc},
+       {"DebugStr",                    MacOS_DebugStr,         METH_VARARGS,   DebugStr_doc},
+       {"GetTicks",                    MacOS_GetTicks,         METH_VARARGS,   GetTicks_doc},
+       {"SysBeep",                     MacOS_SysBeep,          METH_VARARGS,   SysBeep_doc},
+       {"WMAvailable",                 MacOS_WMAvailable,              METH_VARARGS,   WMAvailable_doc},
        {NULL,                          NULL}            /* Sentinel */
 };