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


in reply to Re: Will the real Internals module please stand up?
in thread Will the real Internals module please stand up?

Why isn't it documented? How official is this? For example, can I rely on

our $VERSION = version::qv('1.0.0');

without doing use version; first? (Ignore compatibility with 5.8.)

Replies are listed 'Best First'.
Re^3: Will the real Internals module please stand up?
by Anonymous Monk on Mar 01, 2009 at 07:19 UTC
    I don't know, appears to be a case of "some patch got accepted"
Re^3: Will the real Internals module please stand up?
by ysth (Canon) on Mar 01, 2009 at 19:52 UTC
    can I rely on our $VERSION = version::qv('1.0.0'); without doing use version; first?
    In counter-example, the utf8 and Win32 doc specifically say what can be assumed to be available without loading the module, so unless you can find a similar guarantee in the version doc, I think you'd be overly trusting to do so.