libpadwalker-perl 1.96-1build1 source package in Ubuntu

Changelog

libpadwalker-perl (1.96-1build1) trusty; urgency=low

  * Rebuild for Perl 5.18.
 -- Colin Watson <email address hidden>   Mon, 21 Oct 2013 10:33:02 +0100

Upload details

Uploaded by:
Colin Watson
Uploaded to:
Trusty
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.96.orig.tar.gz 14.9 KiB df250e242f2a1009a8e9fe393b5c8b9ff4817efb345117fd6ada6a3da8380ca0
libpadwalker-perl_1.96-1build1.debian.tar.gz 4.4 KiB 398c5781717cf10966f8d713df83e7f6e95f2e39958805df4b0f6f8da55ce7cf
libpadwalker-perl_1.96-1build1.dsc 2.2 KiB 130a34368f6d99bbcbd6c6e3b650c7082586c907e4b513f2018ce5fa703689a1

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.