in reply to Re^4: Why Does Test::Deep Kill Test::Class
in thread Why Does Test::Deep Kill Test::Class
() would be fine if you didn't then have to type
use Foo::Bar::Woz::Snuts (); Foo::Bar::Woz::Snuts::Wibble($x, $y)
Python gets it right (well better at least) with
from foo.bar.woz import snuts; snuts.wibble(x, y)
and suchlike. This is pretty much impossible in Perl due to symbol table access being absolute, not relative.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^6: Why Does Test::Deep Kill Test::Class
by Your Mother (Archbishop) on Mar 20, 2009 at 18:01 UTC | |
by fergal (Chaplain) on Mar 26, 2009 at 13:06 UTC |