Keep imports and functions out of your namespace
http://search.cpan.org/dist/namespace-clean/
Keeping packages clean
When you define a function, or import one, into a Perl package, it will
naturally also be available as a method. This does not per se cause
problems, but it can complicate subclassing and, for example, plugin
classes that are included via multiple inheritance by loading them as
base classes.
The 'namespace::clean' pragma will remove all previously declared or
imported symbols at the end of the current package's compile cycle.
Functions called in the package itself will still be bound by their
name, but they won't show up as methods on your class or instances.
- Developed at devel:languages:perl
- Sources inherited from project openSUSE:Factory
-
4
derived packages
- Download package
-
Checkout Package
osc -A https://api.opensuse.org checkout openSUSE:Factory:PowerPC/perl-namespace-clean && cd $_
- Create Badge
Refresh
Refresh
Source Files
Filename | Size | Changed |
---|---|---|
namespace-clean-0.21.tar.gz | 0000011809 11.5 KB | |
perl-namespace-clean-use_lib.patch | 0000005280 5.16 KB | |
perl-namespace-clean.changes | 0000002443 2.39 KB | |
perl-namespace-clean.spec | 0000002917 2.85 KB |
Revision 4 (latest revision is 16)
Stephan Kulow (coolo)
accepted
request 91963
from
Stephan Kulow (coolo)
(revision 4)
- update to 0.21 - When using the tie() fallback ensure we do not obliterate a foreign tie() - Better document how to disable the tie() fallback - Only invoke the deleted sub stashing if we run udner a debugger (avoid runtime penalty of Sub::Name/Sub::Identify) - Spellfixes (RT#54388) - When B::Hooks::EndOfScope is not available, switch to a simple tie() of %^H. While it can not 100% replace B::H::EOS, it does everything n::c needs
Comments 0