I see in a python class following pattern
class xxx(object):
    def __some_method():
        pass
    _some_method = __some_method
why would somebody use this pattern of assigning the Double Leading Underscore method to a Single Leading Underscore variable?
