class-based https://repl.it/JZn4/12
但还是很丑........
如果没猜错的话,外层应该会在 init() < 0 的时候再 release_process3() 。
这样的行为跟 switch-case 的 fall-through 其实没啥关系...
(btw, golang 的 switch 是 fall-through by default)
比较有关的大概是 RAII (https://goo.gl/jZHYyw ),在 Python 基本上就是用
context manager 来实作。