NOTE: use Perl; is on undef hiatus. You can read content, but you can't post it. More info will be forthcoming forthcomingly.
All the Perl that's Practical to Extract and Report
Stories, comments, journals, and other submissions on use Perl; are Copyright 1998-2006, their respective owners.
5.00503 (Score:3, Interesting)
There are an awful lot of people still on 5.00503.
Re:5.00503 (Score:4, Insightful)
Re:5.00503 (Score:5, Insightful)
It's all good and well telling people that module authors should use 5.6.1, and for sure there are some nice features (open(my $fh) being one, weakrefs being the other), but persuading sysadmins to upgrade is a whole other issue. Espe
Re:5.00503 (Score:2, Interesting)
Or is is just best to read the code in the hopes of finding it?
Reply to This
Parent
Re:5.00503 (Score:3, Informative)
The clever thing about XML::XPath's code is that it manages to do this flexibly enough that by switching just one flag it can work in either the indirect obj
Re:5.00503 (Score:2, Informative)
One way to avoid need for weak references is to have all objects register/unregister themselves in a hash. Other objects refer to that object by the key in that hash. The code will be clumpsy but it will work.