-
Notifications
You must be signed in to change notification settings - Fork 540
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
printf %a botches 0 flag for negative values #15505
Comments
From zefram@fysh.orgCreated by zefram@fysh.org$ perl -lwe 'printf "%020a\n", $_ for 1.5, -1.5' The latter has the zero padding in the wrong place. It should always go $ perl -lwe 'printf $_, 1.5 for "%+020a\n", "% 020a\n"' Perl Info
|
From @jhiOn Wed, 10 Aug 2016 13:37:53 -0700, zefram@fysh.org wrote:
I believe https://perl5.git.perl.org/perl.git/commit/be9304 fixed this.
|
The RT System itself - Status changed from 'new' to 'open' |
@jhi - Status changed from 'open' to 'resolved' |
Migrated from rt.perl.org#128893 (status was 'resolved')
Searchable as RT128893$
The text was updated successfully, but these errors were encountered: