1Package::Stash::PP(3) User Contributed Perl DocumentationPackage::Stash::PP(3)
2
3
4
6 Package::Stash::PP - Pure perl implementation of the Package::Stash API
7
9 version 0.39
10
12 use Package::Stash;
13
15 This is a backend for Package::Stash implemented in pure perl, for
16 those without a compiler or who would like to use this inline in
17 scripts.
18
19 • remove_symbol also replaces the associated typeglob
20
21 This can cause unexpected behavior when doing manipulation at
22 compile time - removing subroutines will still allow them to be
23 called from within the package as subroutines (although they will
24 not be available as methods). This can be considered a feature in
25 some cases (this is how namespace::clean works, for instance), but
26 should not be relied upon - use "remove_glob" directly if you want
27 this behavior.
28
29 • Some minor memory leaks
30
31 The pure perl implementation has a couple minor memory leaks (see
32 the TODO tests in t/20-leaks.t) that I'm having a hard time
33 tracking down - these may be core perl bugs, it's hard to tell.
34
36 • Class::MOP::Package
37
38 This module is a factoring out of code that used to live here
39
41 Bugs may be submitted through the RT bug tracker
42 <https://rt.cpan.org/Public/Dist/Display.html?Name=Package-Stash> (or
43 bug-Package-Stash@rt.cpan.org <mailto:bug-Package-Stash@rt.cpan.org>).
44
46 Mostly copied from code from Class::MOP::Package, by Stevan Little and
47 the Moose Cabal.
48
50 This software is copyright (c) 2020 by Jesse Luehrs.
51
52 This is free software; you can redistribute it and/or modify it under
53 the same terms as the Perl 5 programming language system itself.
54
55
56
57perl v5.34.0 2021-07-22 Package::Stash::PP(3)