libdevel-findref-perl 1.422-1build2 source package in Ubuntu

Changelog

libdevel-findref-perl (1.422-1build2) precise; urgency=low

  * Rebuild for Perl 5.14.
 -- Colin Watson <email address hidden>   Tue, 15 Nov 2011 19:41:29 +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
libdevel-findref-perl_1.422.orig.tar.gz 8.0 KiB 5c0d4e67fa813a77805049dbe503a9f76e8661ec956a973ee73d843799b08d09
libdevel-findref-perl_1.422-1build2.diff.gz 1.9 KiB 0a0d84246071ffc48a3058ef31a3a3d9880f486b80bd5d2baf011b858591d9a3
libdevel-findref-perl_1.422-1build2.dsc 2.1 KiB b513d5b02dc42a3ee2bf1048e8a464e0eded567b9e4c688a23b6ce37ca20f694

Available diffs

View changes file

Binary packages built by this source

libdevel-findref-perl: Perl module to find variables referring to an object

 Devel::FindRef is a module that can help developers track down reference
 problems. Since Perl keeps track of everything internally, it is usually
 possible to take an object/scalar/what-have-you and find everything that is
 referring to it.
 .
 One common scenario is that some object goes out of scope and you expect it
 to be destroyed, but there are still references to it that keep it from being
 garbage collected.
 .
 This module can output a tree containing a list of variables that point to a
 given value, along with some context about them, such as their scope and
 where they are.