Michael G Schwern wrote:
>
> On Wed, Oct 02, 2002 at 01:50:56PM +0200, H.Merijn Brand wrote:
> > SYNOPSIS
> > use Devel::Internals;
>
> A little broad. Perhaps Devel::Memory?
>
> > my $end = sbrk ();
> >
> > my @array = (1..1);
> > print "The creation of th
Michael G Schwern wrote:
>
> On Sun, Dec 16, 2001 at 02:41:31PM +, Piers Cawley wrote:
> > Nothing wrong with an adaptor/factory returning something that isn't
> > a Foo, so long as it has the same interface.
>
> That's why its isa_ok() and not ref_ok().
>
> On the off chance Foo->new is su
Chromatic wrote:
[snip]
> +re->unimport('taint');
> +isnt( $^H & 0x0010, 1, 'unimport should clear bits in $^H when requested' );
> +re->unimport('eval');
> +isnt( $^H & 0x0020, 1, '... and again' );
These tests are wrong. $^H & 0x0010 will never be one, no matter
what is in $^H. It
Chromatic wrote:
[snip]
> sub parse_command_line {
> -usage() if defined $opt_help;
> -$opt_help = "";# make -w shut up
> +usage() if defined $Options{help};
> +$Options{help} = ""; # make -w shut up
Isn't that "make -w shut up" is talking about