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 vstinner
Recipients Adrian Wielgosik, Demur Rumed, mark.dickinson, serhiy.storchaka, vstinner
Date 2016-05-24.21:38:40
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1464125920.46.0.0215216529016.issue27097@psf.upfronthosting.co.za>
In-reply-to
Content
> +#define NEXTOPARG()     (oparg = *(unsigned short*)next_instr, opcode = OPOF(oparg), oparg = ARGOF(oparg), next_instr += 2)

I dislike this approach. I would prefer to use the unsigned short* type for next_instr, and put an assertion when next_instr is first assigned.
History
Date User Action Args
2016-05-24 21:38:40vstinnersetrecipients: + vstinner, mark.dickinson, serhiy.storchaka, Demur Rumed, Adrian Wielgosik
2016-05-24 21:38:40vstinnersetmessageid: <1464125920.46.0.0215216529016.issue27097@psf.upfronthosting.co.za>
2016-05-24 21:38:40vstinnerlinkissue27097 messages
2016-05-24 21:38:40vstinnercreate