Re: [ Memory ] Re: Thought

2002-10-03 Thread Benjamin Goldberg
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

Re: Untested modules update: There's more than we thought

2001-12-16 Thread Benjamin Goldberg
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

Re: [PATCH MANIFEST, ext/re.t] Basic tests for re.pm

2001-12-15 Thread Benjamin Goldberg
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

Re: [REPATCH installhtml] Re: installhtml needs a good beating out

2001-10-22 Thread Benjamin Goldberg
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