libpadwalker-perl 1.98-1 source package in Ubuntu

Changelog

libpadwalker-perl (1.98-1) unstable; urgency=medium


  * New upstream release.
  * Declare compliance with Debian Policy 3.9.5.

 -- gregor herrmann <email address hidden>  Wed, 11 Dec 2013 22:12:22 +0100

Upload details

Uploaded by:
Debian Perl Group
Uploaded to:
Sid
Original maintainer:
Debian Perl Group
Architectures:
any
Section:
perl
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section
Trusty release main perl

Downloads

File Size SHA-256 Checksum
libpadwalker-perl_1.98-1.dsc 2.1 KiB 86c9aab0ddfa98d818f6c04d5e35beaf70a131e67439690d8ac13e0a8f9e3f76
libpadwalker-perl_1.98.orig.tar.gz 15.5 KiB 80af38103ae59aff537ba9102898bb939ec191e537ddc04170d4715556a3576c
libpadwalker-perl_1.98-1.debian.tar.gz 4.4 KiB d58955a4cd472c3075aa972e0f07e2eaa9cd2f20fb613293a9ee5a7de6eadcae

No changes file available.

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.