Avoid binding functions to temporaries in random.py
#131269
Labels
performance
Performance or resource usage
stdlib
Python modules in the Lib dir
type-feature
A feature request or enhancement
Feature or enhancement
The random module has a bunch of code that binds methods to temporary local variables like:
cpython/Lib/random.py
Lines 248 to 253 in 55815a6
I think this pattern dates back to 2001 (in d7b5e88). I think it was an optimization at one point, but now it's the opposite. Python optimizes method calls (in some sort since 3.7) so it's faster to use:
Getting rid of this pattern seems to:
random.randint()
andrandom.shuffle()
by about 10-15%LOAD_ATTR_METHOD_WITH_VALUES
1This came up when looking at a variation of @pfmoore's code snippet: montecarlo.py
Linked PRs
Footnotes
I think we should be able avoid contention even with this (anti-)pattern, but I'll write that up in a separate issue. ↩
The text was updated successfully, but these errors were encountered: