From: Andreas König Date: Fri, 19 Mar 1999 06:00:28 +0000 (+0100) Subject: load base packages based on nonexistent $VERSION X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=b8bc843f4b88497de8b7d2b8ca0b37a92d610dc4;p=p5sagit%2Fp5-mst-13.2.git load base packages based on nonexistent $VERSION Message-ID: Subject: Re: base.pm flaw p4raw-id: //depot/perl@3302 --- diff --git a/lib/base.pm b/lib/base.pm index 3500cbf..9a733ea 100644 --- a/lib/base.pm +++ b/lib/base.pm @@ -19,12 +19,21 @@ Roughly similar in effect to Will also initialize the %FIELDS hash if one of the base classes has it. Multiple inheritance of %FIELDS is not supported. The 'base' -pragma will croak if multiple base classes has a %FIELDS hash. See +pragma will croak if multiple base classes have a %FIELDS hash. See L for a description of this feature. When strict 'vars' is in scope I also let you assign to @ISA without having to declare @ISA with the 'vars' pragma first. +If any of the base classes are not loaded yet, I silently +Cs them. Whether to C a base class package is +determined by the absence of a global $VERSION in the base package. +If $VERSION is not detected even after loading it, will +define $VERSION in the base package, setting it to the string +C<-1, defined by base.pm>. + +=head1 HISTORY + This module was introduced with Perl 5.004_04. =head1 SEE ALSO @@ -34,13 +43,15 @@ L =cut package base; +use vars qw($VERSION); +$VERSION = "1.00"; sub import { my $class = shift; my $fields_base; foreach my $base (@_) { - unless (defined %{"$base\::"}) { + unless (exists ${"$base\::"}{VERSION}) { eval "require $base"; # Only ignore "Can't locate" errors from our eval require. # Other fatal errors (syntax etc) must be reported. @@ -51,6 +62,8 @@ sub import { "\t(Perhaps you need to 'use' the module ", "which defines that package first.)"); } + ${"$base\::VERSION"} = "-1, set by base.pm" + unless exists ${"$base\::"}{VERSION}; } # A simple test like (defined %{"$base\::FIELDS"}) will diff --git a/lib/locale.pm b/lib/locale.pm index 48213ab..44e88f4 100644 --- a/lib/locale.pm +++ b/lib/locale.pm @@ -20,6 +20,9 @@ locales for built-in operations (LC_CTYPE for regular expressions, and LC_COLLATE for string comparison). Each "use locale" or "no locale" affects statements to the end of the enclosing BLOCK. +See L for more detailed information on how Perl supports +locales. + =cut sub import {