Package: perl-doc Version: 5.10.0-10 Severity: wishlist In perlfunc use Module VERSION LIST use Module VERSION use Module LIST use Module use VERSION Imports some semantics into the current package from the named module, generally by aliasing certain subroutine or variable names into your package. It is exactly equivalent to
BEGIN { require Module; Module->import( LIST ); } This might convince the user into thinking "I'll just put the `use' statement next to where I use the item, to keep my program tidy to my tastes, even inside the tightest loop, as it costs the same as putting it at the top of the program." Please add mention there on perlfunc if this is indeed the case. E.g., in light of toggling with `no'. Also on perlfunc Currently implemented pragmas are: use constant; use diagnostics; use integer; use sigtrap qw(SEGV BUS); use strict qw(subs vars refs); use subs qw(afunc blurfl); use warnings qw(all); use sort qw(stable _quicksort _mergesort); Add use feature... even though it is mentioned elsewhere. Indeed, that list seems not to follow from use Module VERSION LIST use Module VERSION use Module LIST use Module use VERSION at the very top, so maybe add use PRAGMA. -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]