libsub-identify-perl 0.04-1build2 source package in Ubuntu

Changelog

libsub-identify-perl (0.04-1build2) precise; urgency=low

  * Rebuild for Perl 5.14.
 -- Colin Watson <email address hidden>   Tue, 15 Nov 2011 20:14:17 +0000

Upload details

Uploaded by:
Colin Watson
Uploaded to:
Precise
Original maintainer:
Debian Perl Group
Architectures:
any
Section:
perl
Urgency:
Low Urgency

See full publishing history Publishing

Series Pocket Published Component Section
Precise release universe perl

Downloads

File Size SHA-256 Checksum
libsub-identify-perl_0.04.orig.tar.gz 41.5 KiB be4bb6b894af405e8031139fdd30cd34e7389cde13602d4b80b040b2ea6ce499
libsub-identify-perl_0.04-1build2.diff.gz 2.0 KiB 012be43ff77d672e40e98a094ddebf6eac7cb0925af6f43dd929f33a1d800e93
libsub-identify-perl_0.04-1build2.dsc 2.1 KiB ade90f0589887fba5d7f28d01bfacc63e8fd0f4f49231f9ed871e44e06bd71be

Available diffs

View changes file

Binary packages built by this source

libsub-identify-perl: Retrieve names of code references

 Sub::Identify allows you to retrieve the real name of code references. For
 this, it uses perl's introspection mechanism, provided by the B module.
 .
 It provides four functions : sub_name returns the name of the
 subroutine (or __ANON__ if it's an anonymous code reference),
 stash_name returns its package, and sub_fullname returns the
 concatenation of the two.
 .
 The fourth function, get_code_info, returns a list of two elements,
 the package and the subroutine name (in case of you want both and are worried
 by the speed.)
 .
 In case of subroutine aliasing, those functions always return the
 original name.