consider the following template:
'''some module body''' def __foo(): '''module method foo''' pass class Dummy(object): @staticmethod def bar(): __foo() __foo()
Why is this happening?
-
And if it is bad to call it "__", what is the best practice in Python for creating modular methods available only for intra-modular functions / methods?
source share