... If you need stricture, ISTR that: ${::}{"${callpack}::}{$sym} = \&{$Shell::{$sym}} Does what you want in a strict fashion. Not pretty, but effective. And...
Piers Cawley
pdcawley@...
Aug 1, 2000 7:47 am
70469
... As I recall someones analysis of the problem it was that the numeric default port number in POP3.pm was not being honoured if getservbyname() failed (e.g....
Nick Ing-Simmons
nik@...
Aug 1, 2000 8:37 am
70470
Wilfredo S=?iso-8859-1?q?=E1?=nchez <wsanchez@...> wrote ... Those 49..52 should of course be ord(1)..ord(4). Mike Guy ... whose memories of EBCDIC are...
M.J.T. Guy
mjtg@...
Aug 1, 2000 8:48 am
70471
Piers Cawley <pdcawley@...> wrote ... Give or take a " . Mike Guy...
M.J.T. Guy
mjtg@...
Aug 1, 2000 8:59 am
70472
... Damn! Well, it was close......
Piers Cawley
pdcawley@...
Aug 1, 2000 9:23 am
70473
... While this is true from a syntax point of view, variables have already been resolved by the time we get to modify the op tree. So it would not cause an...
Graham Barr
gbarr@...
Aug 1, 2000 9:29 am
70474
... Something similar came up ages ago -- see <http://www.xray.mpe.mpg.de/mailing-lists/perl5-porters/1998-07/msg00840.html> and its thread. Kurt ended up by...
Dominic Dunlop
domo@...
Aug 1, 2000 10:54 am
70475
... The problem is that the alarm() may fire after sysread() has returned but while perl is mallocing for buffer twiddling or whatever. ... -- Nick Ing-Simmons...
Nick Ing-Simmons
nik@...
Aug 1, 2000 11:51 am
70476
... And Microsoft Outlook makes it virtually impossible to read the headers in a message unless you happen to know where to find the magic "internet headers"...
Horsley Tom
Tom.Horsley@...
Aug 1, 2000 11:55 am
70477
To answer the question in the Subject line, it was a punt: op/sprintf.t now accepts either two or three digit exponents, bleating slightly if it sees three...
Dominic Dunlop
domo@...
Aug 1, 2000 12:24 pm
70478
It claims one test to many. After this change (on HP-UX 11.00 and AIX 4.3): HP-UX 11.00, bleedperl till 6477: All tests successful. u=0.53 s=0.39 cu=35.55...
H.Merijn Brand
h.m.brand@...
Aug 1, 2000 1:09 pm
70479
... No, you're right, we can cut it back to the simpler form. I mostly did it that way so it was a parallel construct to the previous line. I have included a...
John Peacock
JPeacock@...
Aug 1, 2000 1:14 pm
70480
... I'm not sure Math::BigFloat is ready for that high a version number yet. ... Actually Math::BigInt could use a version number too. Ronald...
Ronald J Kimball
rjk@...
Aug 1, 2000 1:29 pm
70481
... Sorry, bad reflex. I wasn't thinking about it and treated it as a package variable. Revised patch (#3) below. I also downgraded the version number by...
John Peacock
JPeacock@...
Aug 1, 2000 1:40 pm
70482
... Ha! So I got the op/tr one. ... Hey, not so fast! Simon is trying to fix this that troublesome test (he already sent me a fix but I haven't yet applied...
Jarkko Hietaniemi
jhi@...
Aug 1, 2000 1:59 pm
70483
... I keep having similar bad nightmares. Hey, I would be very happy even for a platform-independent string-to-int-and-long-and-quad-and-back conversions. ......
Jarkko Hietaniemi
jhi@...
Aug 1, 2000 2:02 pm
70484
... Sorry, no. But that's only a warning, so the tests are accepted. # TEST op/tr.t op/tr...assertion botched (chunk's tail overwrite?): *((char...
H.Merijn Brand
h.m.brand@...
Aug 1, 2000 2:05 pm
70485
... Anyone up for a patch that converts the $Config::Config{byteorder} to a tied scalar that dynamically computes the correct value first and then replaces...
Jarkko Hietaniemi
jhi@...
Aug 1, 2000 2:15 pm
70486
... Hrmph. I do not see this problem in HP-UX. Could you show your myconfig output from that machine? -- $jhi++; # http://www.iki.fi/jhi/ # There is this...
Jarkko Hietaniemi
jhi@...
Aug 1, 2000 2:16 pm
70487
... Tomorrow, I'm off to our Monger meeting now. -- H.Merijn Brand Amsterdam Perl Mongers (http://www.amsterdam.pm.org/) using perl5.005.03, 5.6.0 &...
H.Merijn Brand
h.m.brand@...
Aug 1, 2000 2:48 pm
70488
... Could you also try bisecting which op/tr subtest is triggering the warning? -- $jhi++; # http://www.iki.fi/jhi/ # There is this special biologist word we...
Jarkko Hietaniemi
jhi@...
Aug 1, 2000 4:23 pm
70489
This is a bug report for perl from garry@..., generated with the help of perlbug 1.28 running under perl v5.6.0. ... [Please enter your report here] A...
Garry T. Williams
garry@...
Aug 1, 2000 6:35 pm
70490
... I would be very appreciative if Kurt would consider writing this patch. I'd be more than happy to test it for him. I'd buy him beer at the next Perl...
Jeff Okamoto
okamoto@...
Aug 1, 2000 6:44 pm
70491
In article <slrn8oct2n.19l.simon@...>, ... I wish there were a way to make AUTOLOAD for a package only called if the sub is declared. ...
Yitzchak Scott-Thoennes
sthoenna@...
Aug 1, 2000 6:59 pm
70492
Maybe something like this would be nice: package Config; sub TIESCALAR { my ($class, $code) = @_; bless \$code, $class; } sub FETCH { my $self = shift; my...
Jarkko Hietaniemi
jhi@...
Aug 1, 2000 7:14 pm
70493
... Part of this issue is that some cavalier Perl programmers have forgotten their stolic but standard C lore, in which it is plainly stated that one must...
Tom Christiansen
tchrist@...
Aug 1, 2000 7:20 pm
70494
... Whoa, Nelly! You can't go making $VERSION a lexical. Think about it. This my-happiness is misplaced. --tom...
Tom Christiansen
tchrist@...
Aug 1, 2000 7:21 pm
70495
... This is a known bug in 5.6, fixed in perl-current. The work around is to add quotes around the reference. -- <Matt/> Fastnet Software Ltd. High Performance...
Matt Sergeant
matt@...
Aug 1, 2000 7:34 pm
70496
Simon Cozens [simon@...] quoth: *>Yitzchak Scott-Thoennes (lists.p5p): *>>Anybody else having problems? *> *> % ping www.activestate.com *>PING...
Elaine -HFB- Ashton
elaine@...
Aug 1, 2000 7:43 pm
70497
This is a bug report for perl from eserte@..., generated with the help of perlbug 1.28 running under perl v5.6.0. ... "use base" and "@ISA" do not...