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


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.