Jump to letter: [
ABCDEFGHIJKLMNOPQRSTUVWXYZ
]
perl-parent - Establish an ISA relationship with base classes at compile time
- Description:
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.236-1.fc25.noarch
[17 KiB] |
Changelog
by Paul Howarth (2016-10-10):
- Update to 0.236
- Add Travis test configuration
- Make test for PMC availability more reliable
- Disable benchmark test rt62341.t as it runs out of memory on many smoker
systems (CPAN RT#118310)
- Simplify find command using -delete
|