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

Changelog

libdevel-findref-perl (1.422-1build1) oneiric; urgency=low

  * Rebuild for Perl 5.12.
 -- Colin Watson <email address hidden>   Sun, 08 May 2011 12:56:55 +0100

Upload details

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

See full publishing history Publishing

Series Pocket Published Component Section

Downloads

File Size SHA-256 Checksum
libdevel-findref-perl_1.422.orig.tar.gz 8.0 KiB 5c0d4e67fa813a77805049dbe503a9f76e8661ec956a973ee73d843799b08d09
libdevel-findref-perl_1.422-1build1.diff.gz 1.8 KiB 14bcad7af52697fc22c74f602c121564b5f0b9b3276b262969c3d21202f6321c
libdevel-findref-perl_1.422-1build1.dsc 2.1 KiB 2ee521ab43878809001d7b32a09036011168b5caa74905950312bdd625ad9a96

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.