libpadwalker-perl 1.92-1build2 source package in Ubuntu

Changelog

libpadwalker-perl (1.92-1build2) precise; urgency=low

  * Rebuild for Perl 5.14.
 -- Colin Watson <email address hidden>   Tue, 15 Nov 2011 20:09:03 +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 main perl

Downloads

File Size SHA-256 Checksum
libpadwalker-perl_1.92.orig.tar.gz 14.2 KiB 27a65d8a5f5eac3563a28cb727eff8b72d8ae29be8f5ef6dff0a9839c6576156
libpadwalker-perl_1.92-1build2.debian.tar.gz 3.8 KiB 4b7cdff92e8b2c9d0ac3ad8fa4d76320edfa7c342c09f168b268be1c1047d2ae
libpadwalker-perl_1.92-1build2.dsc 2.1 KiB 1fa91de08ca6e299f48c5159ca085c5a7c6392dade9fe37044e5d509a00cb20a

Available diffs

View changes file

Binary packages built by this source

libpadwalker-perl: module to inspect and manipulate lexical variables

 PadWalker is a module that allows you to inspect and even modify lexical
 variables in the current "lexical pad stack." Perl tracks which variables
 are accessible and visible in each lexical scope by keeping a separate
 set of variables for each scope. This module looks for a given variable
 by traversing that stack, which allows it to alter anything in the stack,
 even variables not normally accessible in the current scope.
 .
 In practise, this module is useful for checking anything defined in the full
 stack of subroutines that called your function, making it extremely useful
 for debugging. It is, however, not recommended for use in production code.