Jump to letter: [
ABCDEFGHIJKLMNOPQRSTUVWXYZ
]
perl-parent - Establish an ISA relationship with base classes at compile time
- Description:
parent allows you to both load one or more modules, while setting up
inheritance from those modules at the same time. Mostly similar in effect to:
package Baz;
BEGIN {
require Foo;
require Bar;
push @ISA, qw(Foo Bar);
}
Packages
perl-parent-0.225-211.fc17.noarch
[34 KiB] |
Changelog
by Petr Pisar (2012-02-06):
- Fix searching for Unicode::Collate::Locale data (bug #756118)
- Run safe signal handlers before returning from sigsuspend() and pause()
(bug #771228)
- Correct perl-Scalar-List-Utils files list
- Stop !$^V from leaking (bug #787613)
|