Jump to letter: [
          
            3ABCDEFGHIJKLMNOPQRSTUVWXYZ
          ]
        
        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.231-1.fc22.noarch
              [17 KiB] | Changelog
              by Paul Howarth (2015-03-10): - Update to 0.231
  - Restore test compatibility where Perl does not provide
    &Config::non_bincompat_options (CPAN RT#102626) |