Re: [Pyobjc-dev] caution with BOOL parameters
Brought to you by:
ronaldoussoren
From: <bo...@pa...> - 2003-03-01 20:05:38
|
sorry, this is wrong, it should be an analogous change to depythonify_c_return_value(). --b On Saturday, March 1, 2003, at 11:56 AM, Bob Pasker wrote: > > case _C_CHR: case _C_SHT: > return pythonify_c_value(intType, datum); > > to something like: > > case _C_SHT: > return pythonify_c_value(intType, datum); > case _C_CHR: > return (pythonify_c_value(intType, datum) != 0); |