in reply to Bad news for IO::Handle magic

The question is that if you have a handler opened Perl will treat it as a IO::Handle object:
package ALIAS ; sub close { print "CLOSE>> @_\n" ; } package main ; open(ALIAS , ">&STDIN") ; ALIAS->close() ;
This will produce the IO::Handle error, but if you remove the open() line, ALIAS will work as a package name. So, this is not a reserved word problem!

Graciliano M. P.
"Creativity is the expression of the liberty".