The peephole optimiser replaces short sequences of bytecodes with more efficient equivalents.
For example the sequence
store_frame 1
load_frame 1
can be replaced with the sequence
copy
store_frame 1
The peephole optimiser replaces short sequences of bytecodes with more efficient equivalents.
For example the sequence
store_frame 1
load_frame 1
can be replaced with the sequence
copy
store_frame 1