Is this expected behaviour?
I am extracting a 32 bit real value of "7.35" using python using feature.getAttribute in 2018.1/2019.1 (and probably every other one). It is returning 7.349999904632568 as a 64 Bit Real . I get that this calculating using 64 bit, so that's where it is coming from, but interested that it is performing that calc on an existing known number.
The workaround was to use feature.getAttributeAsType(<attribute>, 11) to treat as a string
Example attached