-
Notifications
You must be signed in to change notification settings - Fork 571
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Re: [rt.cpan.org #101876] losing string value of semi-numeric string #14464
Comments
From @demerphqOn 2 February 2015 at 11:33, Zefram via RT
No. I disagree. This is a bug in perl itself. $ perl -MDevel::Peek -le'my $x="0 but true"; my $y=0+$x; Dump($x)' The IOK flag should NOT be set here, it should be pIOK only. IOK means that the integer representation is either a) canonical, or pIOK is supposed to mean that the cached value of the string can be (If IOK and pIOK do not mean these things then it is a total waste to Compare to this: $ perl -MDevel::Peek -le'my $x="0blahblah"; my $y=0+$x; Dump($x)' IMO this is clearly a bug in the special case logic for "0 but true". I will naturally try to fix this in Sereal, but I consider this a bug cheers, perl -Mre=debug -e "/just|another|perl|hacker/" |
From @sisyphus-----Original Message-----
I notice that '0 but true' doesn't trigger the "isn't numeric" warning when C:\>perl -wle "$x = '0 but true' + 17;print $x;" C:\> And the looks_like_number() API function returns true for '0 but true' - as C:\>perl -MScalar::Util -le "print 'nok' if C:\> The string '0 but true' doesn't look much like a number to me, but this Cheers, |
The RT System itself - Status changed from 'new' to 'open' |
From @iabynOn Mon, Feb 02, 2015 at 11:01:09PM +1100, sisyphus1@optusnet.com.au wrote:
It's documented in perlfunc: ... and has been that way since perl 3. -- |
From @demerphqOn 2 February 2015 at 15:50, Dave Mitchell <davem@iabyn.com> wrote:
Just to be clear I have no intention of breaking this. I just want to Yves -- |
From @cpansproutOn Mon Feb 02 02:51:59 2015, demerphq wrote:
Do you think "00" should also have the IOK flag off? $ perl -le ' use Devel::Peek; $x = "00"; 0+$x; Dump $x' You could say that is not ‘a faithful representation of the PV’ because the numeric value would stringify differently. But, honestly, apart from Sereal, are there any cases where such a distinction would matter? In practice, what does IOK mean? It means to skip a non-numeric warning and not even bother checking the PV. Anything else? -- Father Chrysostomos |
From @demerphqOn 2 February 2015 at 21:44, Father Chrysostomos via RT
Yes.
Yes.
Every serialization package out there. Yves -- |
Migrated from rt.perl.org#123715 (status was 'open')
Searchable as RT123715$
The text was updated successfully, but these errors were encountered: