http://www.perlmonks.org?node_id=1009497


in reply to Re: A problem when modify a pm
in thread A problem when modify a pm

OK, it's like this: to solve a problem, I have to make changes to the TieRegistry module. But to be safe, I didn't change on it directly. Instead, I made a copy and change the copied one and renamed it as TieRegistry64 in the same Perl lib folder as TieRegistry. But error mentioned happens and I didn't know how to fix at the moment.

Replies are listed 'Best First'.
Re^3: A problem when modify a pm
by anaconda_wly (Scribe) on Dec 19, 2012 at 05:35 UTC

    The TieRegistry is a standard module of Perl. In normal time when I "use Win32:TieRegistry", I can use $Registry directly without error. I found one line in TieRegistry:

    use vars qw( $RegObj %_Roots %RegHash $Registry );