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.40
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
20 • remove_symbol also replaces the associated typeglob
21
22 This can cause unexpected behavior when doing manipulation at
23 compile time - removing subroutines will still allow them to be
24 called from within the package as subroutines (although they will
25 not be available as methods). This can be considered a feature in
26 some cases (this is how namespace::clean works, for instance), but
27 should not be relied upon - use "remove_glob" directly if you want
28 this behavior.
29
30 • Some minor memory leaks
31
32 The pure perl implementation has a couple minor memory leaks (see
33 the TODO tests in t/20-leaks.t) that I'm having a hard time
34 tracking down - these may be core perl bugs, it's hard to tell.
35
37 • Class::MOP::Package
38
39 This module is a factoring out of code that used to live here
40
42 Bugs may be submitted through the RT bug tracker
43 <https://rt.cpan.org/Public/Dist/Display.html?Name=Package-Stash> (or
44 bug-Package-Stash@rt.cpan.org <mailto:bug-Package-Stash@rt.cpan.org>).
45
47 Mostly copied from code from Class::MOP::Package, by Stevan Little and
48 the Moose Cabal.
49
51 This software is copyright (c) 2022 by Jesse Luehrs.
52
53 This is free software; you can redistribute it and/or modify it under
54 the same terms as the Perl 5 programming language system itself.
55
56
57
58perl v5.38.0 2023-07-21 Package::Stash::PP(3)