The perl5.10 tag has no wiki summary.
1
vote
1answer
130 views
Perl and OpenStreetMap - Out of memory
I use Debian GNU/Linux Squeeze and I have a problem in perl script.
When I try to run script, I receive a stop running script error message "Out of memory!".
Script:
use XML::Parser;
my $Filename = ...
-2
votes
2answers
83 views
Difference between 5.8 and 5.10 [closed]
So I'm suppose to compile some information related to the differences between 5.8 and 5.10.... can someone please point out the major differences, or giving like a starting point from where to begin ...
4
votes
6answers
1k views
Can't use string (“1”) as a subroutine ref while “strict refs” in use
In a Perl daemon reacting to various events I'm trying to use a Null object pattern in 2 cases by creating anonymous subroutines, which should just return a value of 1 aka "true" (please scroll to the ...
2
votes
3answers
347 views
How flush file in perl under mac?
I have perl, v5.10.0 built for darwin-thread-multi-2level in remote iMac. And I want to run some perl script which prints to file some data and flushes after each line of output.
...
5
votes
2answers
384 views
How does O=Deparse work, and does Perl have and fold constant arrays?
I'm wondering, does -MO=Deparse show you all of the Perl optimizations, and why doesn't this get folded in Perl 5.10?
$ perl -MO=Deparse -e'[qw/foo bar baz/]->[0]'
['foo', 'bar', 'baz']->[0];
...
15
votes
3answers
310 views
The good, the bad, and the ugly of lexical $_ in Perl 5.10+
Starting in Perl 5.10, it is now possible to lexically scope the context variable $_, either explicitly as my $_; or in a given / when construct.
Has anyone found good uses of the lexical $_? Does ...
5
votes
3answers
261 views
Can I make sure Perl code written on 5.10+ will run on 5.8?
Some of the new features of Perl 5.10 and 5.12, such as "say", are defined as features, that you can enable or disallow explicitly using the "feature" pragma. But other additions, like the named ...
10
votes
4answers
912 views
Why doesn't Perl file glob() work outside of a loop in scalar context?
According to the Perl documentation on file globbing, the <*> operator or glob() function, when used in a scalar context, should iterate through the list of files matching the specified pattern, ...
1
vote
2answers
313 views
Can a value be uninitialized, but still defined, in Perl?
Running ActiveState Perl 5.10.1 on win32.
How is it that this code:
die(defined($r->unparsed_uri =~ '/(logout.pl)?$'));
...dies with 1, whereas changing the same line to say this:
...
0
votes
1answer
64 views
Help troubleshoot a consistently repeatable mod_perl2 / $SIG{__DIE__} bug
This is mod_perl2 on Apache 2.2, ActiveState Perl 5.10 for win32.
I override $SIG{__DIE__} and turn on DBI's RaiseError flag, which AFAICT from the docs, should call my override when a database call ...
2
votes
2answers
243 views
Did Perl 5.10 mess something up with prototypes?
I know this type of thing I want to do used to work in 5.8. Am I doing something wrong? Is there a way to get back there in Perl 5.10?
Here's the module:
package TableMod;
use base ...
14
votes
6answers
331 views
Where are some good resources for learning the new features of Perl 5.10?
I didn't realize until recently that Perl 5.10 had significant new features and I was wondering if anyone could give me some good resources for learning about those. I searched for them on Google and ...