summaryrefslogtreecommitdiff
path: root/pod/perlfunc.pod
diff options
context:
space:
mode:
authorYitzchak Scott-Thoennes <sthoenna@efn.org>2003-09-02 08:06:29 -0700
committerRafael Garcia-Suarez <rgarciasuarez@gmail.com>2003-09-02 21:21:27 +0000
commit593b9c1462e1fc8a2425e215f64b2197e1bfb796 (patch)
tree5b1548360e92d455d448f14c7d59cf5dc7f03123 /pod/perlfunc.pod
parent16e0ce555006838e58e7d577abeb6130585428b8 (diff)
downloadperl-593b9c1462e1fc8a2425e215f64b2197e1bfb796.tar.gz
some method calls not autoloaded
Message-ID: <20030902220629.GA2952@efn.org> p4raw-id: //depot/perl@21007
Diffstat (limited to 'pod/perlfunc.pod')
-rw-r--r--pod/perlfunc.pod7
1 files changed, 5 insertions, 2 deletions
diff --git a/pod/perlfunc.pod b/pod/perlfunc.pod
index 3a17659ea4..069e7d21c6 100644
--- a/pod/perlfunc.pod
+++ b/pod/perlfunc.pod
@@ -2736,7 +2736,7 @@ C<redo> work.
=item no Module
-See the C<use> function, which C<no> is the opposite of.
+See the C<use> function, of which C<no> is the opposite.
=item oct EXPR
@@ -6160,7 +6160,8 @@ features back into the current package. The module can implement its
C<import> method any way it likes, though most modules just choose to
derive their C<import> method via inheritance from the C<Exporter> class that
is defined in the C<Exporter> module. See L<Exporter>. If no C<import>
-method can be found then the call is skipped.
+method can be found then the call is skipped, even if there is an AUTOLOAD
+method.
If you do not want to call the package's C<import> method (for instance,
to stop your namespace from being altered), explicitly supply the empty list:
@@ -6200,6 +6201,8 @@ through the end of the file).
There's a corresponding C<no> command that unimports meanings imported
by C<use>, i.e., it calls C<unimport Module LIST> instead of C<import>.
+It behaves exactly as C<import> does with respect to VERSION, an
+omitted LIST, empty LIST, or no unimport method being found.
no integer;
no strict 'refs';