-
Notifications
You must be signed in to change notification settings - Fork 571
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Should get_sv imply ADDMG? #12594
Comments
From @cpansproutThis used to work, until $$ was made magical and autovivificable: int _pid_ = SvIV(get_sv("$", FALSE)); With some symbol table entries, perl does not bother creating them on startup, but only when they are first accessed. But when they are accessed, it pretends that they had been there all along. Passing ADDMG to gv_fetchpvn_flags means that lookup will autovivify such typeglobs. Should get_sv be doing that? Currently it is not. Flags: Site configuration information for perl 5.17.6: Configured by sprout at Sat Nov 17 23:09:15 PST 2012. Summary of my perl5 (revision 5 version 17 subversion 6) configuration: Locally applied patches: @INC for perl 5.17.6: Environment for perl 5.17.6: |
Migrated from rt.perl.org#115816 (status was 'new')
Searchable as RT115816$
The text was updated successfully, but these errors were encountered: