Re: [Freeipa-devel] [PATCH] 192 Replace float with Decimal

2012-01-19 Thread Martin Kosek
On Thu, 2012-01-19 at 17:08 -0500, Rob Crittenden wrote: > Martin Kosek wrote: > > On Tue, 2012-01-17 at 11:27 +0100, Martin Kosek wrote: > >> On Fri, 2012-01-13 at 21:02 +0100, Martin Kosek wrote: > >>> This patch fixes RHEL 6.2 build issue. > >>> > >>> Having float type as a base type for fl

Re: [Freeipa-devel] [PATCH] 192 Replace float with Decimal

2012-01-19 Thread Rob Crittenden
Martin Kosek wrote: On Tue, 2012-01-17 at 11:27 +0100, Martin Kosek wrote: On Fri, 2012-01-13 at 21:02 +0100, Martin Kosek wrote: This patch fixes RHEL 6.2 build issue. Having float type as a base type for floating point parameter in ipalib introduces several issues, e.g. problem with repr

Re: [Freeipa-devel] [PATCH] 192 Replace float with Decimal

2012-01-17 Thread Martin Kosek
On Tue, 2012-01-17 at 11:27 +0100, Martin Kosek wrote: > On Fri, 2012-01-13 at 21:02 +0100, Martin Kosek wrote: > > This patch fixes RHEL 6.2 build issue. > > > > Having float type as a base type for floating point parameter in > > ipalib introduces several issues, e.g. problem with representa

Re: [Freeipa-devel] [PATCH] 192 Replace float with Decimal

2012-01-17 Thread Martin Kosek
On Fri, 2012-01-13 at 21:02 +0100, Martin Kosek wrote: > This patch fixes RHEL 6.2 build issue. > > Having float type as a base type for floating point parameter in > ipalib introduces several issues, e.g. problem with representation > or value comparison. Python language provides Decimal type

Re: [Freeipa-devel] [PATCH] 192 Replace float with Decimal

2012-01-13 Thread Rich Megginson
On 01/13/2012 01:02 PM, Martin Kosek wrote: This patch fixes RHEL 6.2 build issue. Having float type as a base type for floating point parameter in ipalib introduces several issues, e.g. problem with representation or value comparison. Python language provides Decimal type which help overcom

[Freeipa-devel] [PATCH] 192 Replace float with Decimal

2012-01-13 Thread Martin Kosek
This patch fixes RHEL 6.2 build issue. Having float type as a base type for floating point parameter in ipalib introduces several issues, e.g. problem with representation or value comparison. Python language provides Decimal type which help overcome these issue. This patch replaces a float ty