Tagged Questions
14
votes
8answers
519 views
How was the syntax chosen for static methods in Python?
I've been working with Python for a while and I find the syntax for declaring methods as static to be peculiar.
A regular method would be declared:
def mymethod(self, params)
...
return
A ...
3
votes
2answers
119 views
Reasons behind naming in easy-to-confuse Python's classes such as OS and SYS?
I have noticed that considerably amount of questions in SO, relating to Python, are about people messing up Sys -class, OS class and no class. For example, an easy confusing is the case: ...