Revision history for indirect
+0.09 2008-12-05 20:35 UTC
+ + Add : Support for perl 5.8.
+ + Tst : Skip a test in t/10-good.t that randomly segfaults for (I guess)
+ systems stricter than linux in the way they manage their memory.
+
0.08 2008-10-22 14:45 UTC
+ Fix : A rare edge case for package whose names are prefix of 'main'.
+ Tst : Test $$ as variable and state variables.
--- #YAML:1.0
name: indirect
-version: 0.08
+version: 0.09
abstract: Lexically warn about using the indirect object syntax.
author:
- Vincent Pit <perl@profvince.com>
directory:
- t
- inc
-generated_by: ExtUtils::MakeMaker version 6.46
+generated_by: ExtUtils::MakeMaker version 6.48
meta-spec:
url: http://module-build.sourceforge.net/META-spec-v1.4.html
version: 1.4
indirect - Lexically warn about using the indirect object syntax.
VERSION
- Version 0.08
+ Version 0.09
SYNOPSIS
no indirect;
Magically called at each "use indirect". Turns the module off.
DEPENDENCIES
- perl 5.9.4.
+ perl 5.8.
XSLoader (standard since perl 5.006).
indirect object syntax, although it will as soon as there is another
token before the end (as in "meth $obj;" or "meth $obj 1").
+ With 5.8 perls, the pragma does not propagate into "eval STRING". This
+ is due to a shortcoming in the way perl handles the hints hash, and is
+ fixed in perl 5.10.
+
AUTHOR
Vincent Pit, "<perl at profvince.com>", <http://www.profvince.com>.
=head1 VERSION
-Version 0.08
+Version 0.09
=cut
our $VERSION;
BEGIN {
- $VERSION = '0.08';
+ $VERSION = '0.09';
}
=head1 SYNOPSIS