Bug#417999: perl: GDBM tied hash weirdness - deletion in 'each' loop does nothing

2017-12-15 Thread Dominic Hargreaves
Control: tags -1 + fixed-upstream On Mon, Apr 01, 2013 at 10:27:24PM +0100, Dominic Hargreaves wrote: > tags 417999 +confirmed > retitle 417999 GDBM tied hash weirdness; deletion ends 'each' loop > thanks > > On Thu, Apr 05, 2007 at 09:53:38PM -0400, Ian Zimmerman wrote: > > Try the following pea

Bug#417999: perl: GDBM tied hash weirdness - deletion in 'each' loop does nothing

2013-04-01 Thread Dominic Hargreaves
tags 417999 +confirmed retitle 417999 GDBM tied hash weirdness; deletion ends 'each' loop thanks On Thu, Apr 05, 2007 at 09:53:38PM -0400, Ian Zimmerman wrote: > Try the following pearl: > > ## begin test script > > #! /usr/bin/perl > > use GDBM_File; > > %iddb = (); > tie %iddb, 'GDBM_File',

Bug#417999: perl: GDBM tied hash weirdness - deletion in 'each' loop does nothing

2007-04-05 Thread Ian Zimmerman
Package: perl Version: 5.8.8-7 Severity: important Try the following pearl: ## begin test script #! /usr/bin/perl use GDBM_File; %iddb = (); tie %iddb, 'GDBM_File', './weird', &GDBM_WRCREAT|&GDBM_NOLOCK, 0600; for (1..200) { $iddb{"foo$_"} = $_; } print "Before deletion:\n\n"; while (my ($k,