

3·
2 months agolot of copied variables, because of c I suppose? Things like var = self.var
If we’re very charitable, there’s a micro-optimization w/ Python (or at least, older Python) where assigning to a local variable like this inside a method is faster than the full self.var lookup, so you’ll see it in Python’s library code while setting up some loops, etc. as a small speedup. “lots of copied variables”, though, is likely an anti-pattern if not in a heavily used piece of library code, imo.
What’s really crazy is when people write modified Python language pre-processors where:
var = var
is a necessary thing (to bring the var into the right context for the pre-processor to recognize it; yes, I’ve seen this…)
Notably, it’s “just under half” of votes cast for President were cast for Donald Trump. He won without a majority of the vote, getting only 49.8% of the votes cast: https://en.wikipedia.org/wiki/2024_United_States_presidential_election
He is not, and never was, a “popular” President.