-
Notifications
You must be signed in to change notification settings - Fork 56
Open
Labels
enhancementNew feature or requestNew feature or request
Description
Hi again @dosisod,
One thing I'd like to suggest is adding performance checks.
- Certain kinds of loops will benefit from being chained using
itertools.chain, and in generalitertoolsoffers better performance in many cases. - Other things are using the builtins,
filter,mapandreduce, which can be significantly faster than simple python code because of pythons native optimizations. - Usage of sets for lookup (
inchecks, is dramatically faster than list/tuple lookup).
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or request