libnamespace-sweep-perl 0.006-4 source package in Ubuntu

Changelog

libnamespace-sweep-perl (0.006-4) unstable; urgency=medium

  * Team upload.
  * Remove Makefile.old via debian/clean. (Closes: #1045830)

 -- gregor herrmann <email address hidden>  Thu, 07 Mar 2024 11:16:18 +0100

Upload details

Uploaded by:
Debian Perl Group
Uploaded to:
Sid
Original maintainer:
Debian Perl Group
Architectures:
all
Section:
misc
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section
Oracular release universe misc

Builds

Oracular: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
libnamespace-sweep-perl_0.006-4.dsc 2.5 KiB fd98ac6a62492e64e9256c43027823c0702e9bb137f1e0ba0be237952b21eca2
libnamespace-sweep-perl_0.006.orig.tar.gz 12.4 KiB de99ce915ab0f93781580e3433d7dc9c2585a2789627173b280c6030ac0b1953
libnamespace-sweep-perl_0.006-4.debian.tar.xz 3.8 KiB 407cad70e7e097551d81f0dc6c152d4e7485a354485c1ad8fff717b8640ad8a0

Available diffs

No changes file available.

Binary packages built by this source

libnamespace-sweep-perl: sweeps up imported subs in your classes

 Because Perl methods are just regular subroutines, it's difficult to
 tell what's a method and what's just an imported function. As a result,
 imported functions can be called as methods on your objects.
 .
 The namespace::sweep pragma will delete imported functions from your
 class's symbol table, thereby ensuring that your interface is as you
 specified it. However, code inside your module will still be able to
 use the imported functions without any problems.