Is "pass" really a NOP ?
Is it compile into a real nop operation ?
or it is only interpreted as place holder ?
and that statement is jump over a runtime ...
My debugger cannot put a breakpoint on it...
But we usually are able to breakpoint a nop ...

----------
More info:
from 32.12. dis — Disassembler for Python bytecode
General instructions
NOP
Do nothing code. Used as a placeholder by the bytecode optimizer.
So there is a real NOP in the VM so pass is sureley translate to something that can be breakpointed...
Im going to visit PyScripter WIKI to try to find something
Is it compile into a real nop operation ?
or it is only interpreted as place holder ?
and that statement is jump over a runtime ...
My debugger cannot put a breakpoint on it...
But we usually are able to breakpoint a nop ...

----------
More info:
from 32.12. dis — Disassembler for Python bytecode
General instructions
NOP
Do nothing code. Used as a placeholder by the bytecode optimizer.
So there is a real NOP in the VM so pass is sureley translate to something that can be breakpointed...
Im going to visit PyScripter WIKI to try to find something
