Re: [Orbit-python-list] Possible bug in double-precision floating-point marshalling
Status: Inactive
Brought to you by:
tack
From: Jason T. <ta...@li...> - 2001-10-11 16:05:05
|
> In marshal.c, version 0.3.0, line 465 (in marshal_double) looks like this: > > v = (CORBA_float)PyFloat_AsDouble(arg); > > I believe it should look more like this, using CORBA_double as a cast: > > v = (CORBA_double)PyFloat_AsDouble(arg); This looks good, Chip, and it will be included for 0.3.1. Thanks for the correction. Jason |