[Python-3000-checkins] r57873 - python/branches/py3k/Mac/Modules/MacOS.c

georg.brandl python-3000-checkins at python.org
Sat Sep 1 17:27:45 CEST 2007


Author: georg.brandl
Date: Sat Sep  1 17:27:35 2007
New Revision: 57873

Modified:
   python/branches/py3k/Mac/Modules/MacOS.c
Log:
Use symbolic name for METH_VARARGS.


Modified: python/branches/py3k/Mac/Modules/MacOS.c
==============================================================================
--- python/branches/py3k/Mac/Modules/MacOS.c	(original)
+++ python/branches/py3k/Mac/Modules/MacOS.c	Sat Sep  1 17:27:35 2007
@@ -214,11 +214,11 @@
 
 
 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 @@
 
 
 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 */
 };
 


More information about the Python-3000-checkins mailing list