[issue43545] Use LOAD_GLOBAL to set __module__ in class def

2022-02-22 Thread Irit Katriel
Irit Katriel added the comment: Please reopen or create and new issue if this is still relevant and you can provide more information. -- stage: -> resolved status: pending -> closed ___ Python tracker

[issue43545] Use LOAD_GLOBAL to set __module__ in class def

2022-01-24 Thread Irit Katriel
Irit Katriel added the comment: Can you explain what the bug is with code to reproduce it? -- nosy: +iritkatriel status: open -> pending ___ Python tracker ___

[issue43545] Use LOAD_GLOBAL to set __module__ in class def

2021-03-18 Thread Dan Snider
New submission from Dan Snider : Other than obvious performance implications this has, usage of LOAD_NAME makes defining cls.__name__ from within metaclass.__prepare__ difficult. -- messages: 389026 nosy: bup priority: normal severity: normal status: open title: Use LOAD_GLOBAL to set