libpadwalker-perl 1.92-1build1 source package in Ubuntu

Changelog

libpadwalker-perl (1.92-1build1) oneiric; urgency=low

  * Rebuild for Perl 5.12.
 -- Colin Watson <email address hidden>   Sun, 08 May 2011 13:23:24 +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
libpadwalker-perl_1.92.orig.tar.gz 14.2 KiB 27a65d8a5f5eac3563a28cb727eff8b72d8ae29be8f5ef6dff0a9839c6576156
libpadwalker-perl_1.92-1build1.debian.tar.gz 3.8 KiB f90da648ea365aaebb8d64e33a56f56f5daa02faeaa71f47fe029139ed7e6485
libpadwalker-perl_1.92-1build1.dsc 2.1 KiB db0784aaeb385290a107eb5478839a739781034f8e57ccbb120825dc64205988

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.