I know that there isn't truly anything private in Python and protecting a method (adding an underscore at the beginning of its name), however, say I protect my method, does that tell others to not mess with the body of the method, or the signature also?
Asked
Active
Viewed 35 times
0
-
Yes, I believe it should tell the users to not call this method directly in their code. – Alex Sep 10 '22 at 19:09