This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author Mark.Shannon
Recipients Mark.Shannon
Date 2018-01-14.12:05:38
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1515931538.97.0.467229070634.issue32550@psf.upfronthosting.co.za>
In-reply-to
Content
The STORE_ANNOTATION bytecode is used to implement annotations.
The code 
     name : ann
is equivalent to 
    __annotations__['name'] = ann        

Consequently,
    STORE_ANNOTATION name

can be trivially replaced with 
    LOAD_NAME  __annotations__
    LOAD_CONST 'name'
    STORE_SUBSCR
History
Date User Action Args
2018-01-14 12:05:39Mark.Shannonsetrecipients: + Mark.Shannon
2018-01-14 12:05:38Mark.Shannonsetmessageid: <1515931538.97.0.467229070634.issue32550@psf.upfronthosting.co.za>
2018-01-14 12:05:38Mark.Shannonlinkissue32550 messages
2018-01-14 12:05:38Mark.Shannoncreate