|
|
|
|
|
by freehorse
330 days ago
|
|
There are private and public methods. Private methods are only supposed to be called within other methods, as in privately. Public methods are the ones that are normally called through the code, repl, by the user or whatever. You are not supposed to write `myclass.__add__(x)` anywhere except where you define the class itself and its methods. |
|
Internal and munged don't exactly map to private and protected, but are kinda similar ish.