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 methane
Recipients corona10, jstasiak, methane, serhiy.storchaka, uriyyo
Date 2020-11-17.01:17:11
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1605575832.01.0.795795341719.issue42202@roundup.psfhosted.org>
In-reply-to
Content
> Yes, but the code for creating a dict can be simpler. In any case we will better see what format is better when try to write a code.

Note that many annotations are not accessed. RAM usage of annotation information is important than how easy to create dict.

I don't like `(('x', 'int'), ('z', 'float'), ('return', 'Hoge'))` because it creates 4 tuples. It means use more memory, load pyc slower.

Please use ('x', 'int', 'z', 'float', 'return', 'Hoge') instead.
History
Date User Action Args
2020-11-17 01:17:12methanesetrecipients: + methane, serhiy.storchaka, jstasiak, corona10, uriyyo
2020-11-17 01:17:12methanesetmessageid: <1605575832.01.0.795795341719.issue42202@roundup.psfhosted.org>
2020-11-17 01:17:12methanelinkissue42202 messages
2020-11-17 01:17:11methanecreate