Added DirectSetBoolAttribute method. I did some tests with it and thought it might be useful.

This commit is contained in:
Damien Dupuis 2010-01-29 08:51:48 +00:00
parent bdad551e30
commit 88778da1a2
1 changed files with 20 additions and 0 deletions

View File

@ -250,6 +250,26 @@ extern "C" {
} }
// -------------------------------------------------------------------
// Attribute Method Macro For Booleans.
#define DirectSetBoolAttribute(PY_FUNC_NAME,FUNC_NAME,PY_FORMAT,PY_SELF_TYPE,SELF_TYPE) \
static PyObject* PY_FUNC_NAME ( PY_SELF_TYPE *self, PyObject* args ) \
{ \
GENERIC_METHOD_HEAD(SELF_TYPE,cobject,"DirectSetBoolAttribute()") \
\
PyObject* arg0; \
if ( ! PyArg_ParseTuple ( args, "O:" PY_FORMAT, &arg0 ) ) \
return ( NULL ); \
if(arg0 == Py_True) \
cobject->FUNC_NAME (true); \
else \
cobject->FUNC_NAME (false); \
\
Py_RETURN_NONE; \
}
// ------------------------------------------------------------------- // -------------------------------------------------------------------
// Attribute Method Macro For Long. // Attribute Method Macro For Long.