To my surprise, I learned a few months ago that
class MyException(Exception):
...
is valid Python. It is surprisingly difficult to find references to the "..." syntax in the Python Language Reference so I have had a lot of difficulty understanding the exact difference between the above syntax and
class MyException(Exception):
pass
Is there a difference between the snippets above? Where is the first syntax ...
documented?