Skip Menu |

This queue is for tickets about the Class-PseudoHash CPAN distribution.

Report information
The Basics
Id: 96369
Status: new
Priority: 0/
Queue: Class-PseudoHash

People
Owner: Nobody in particular
Requestors: hans [...] matfyz.cz
Cc:
AdminCc:

Bug Information
Severity: Important
Broken in: 1.10
Fixed in: (no value)



Subject: key=># autovivification if $FixedKeys=0
Missing key if $FixedKeys=0. use strict; use Class::PseudoHash; use Data::Dumper; my $phash = Class::PseudoHash->new(); warn Dumper $phash; $Class::PseudoHash::FixedKeys = 0; $phash->{foo} = 'bar'; warn Dumper $phash; See https://github.com/gitpan/Class-PseudoHash/pull/1, https://github.com/ginzel/Class-PseudoHash. README file needs updating/regenerating.