标签: python
我在python类中看到以下模式
class xxx(object): def __some_method(): pass _some_method = __some_method
为什么有人会使用这种将Double Leading Underscore方法分配给Single Leading Underscore变量的模式?