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 samuelmarks
Recipients eric.smith, samuelmarks
Date 2020-12-21.01:47:08
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1608515228.69.0.713239046107.issue42699@roundup.psfhosted.org>
In-reply-to
Content
@eric.smith No benchmarks offhand, but I'd expect it to be a very minor improvement (if detectable).

If this gets accepted I'll probably do a bunch of little changes like this, to improve things, e.g., replace '%' with '.format' (or f-strings, whatever you prefer), ensure `.iterkeys()`/`.iteritems()` validity, and collapse some obvious `.append` cases with list comprehensions.

The idea I'm going off is that when one is debugging their Python code, and it goes across to the Python source, that that Python source code quality is better or equal to the one the higher-level Python developer is creating.

Constructing unnecessary lists is one such code quality issue.
History
Date User Action Args
2020-12-21 01:47:08samuelmarkssetrecipients: + samuelmarks, eric.smith
2020-12-21 01:47:08samuelmarkssetmessageid: <1608515228.69.0.713239046107.issue42699@roundup.psfhosted.org>
2020-12-21 01:47:08samuelmarkslinkissue42699 messages
2020-12-21 01:47:08samuelmarkscreate