Avatar ·

What does ... (ellipsis) mean in Python?

📁 python

I saw the following construct:

class BadStatus(Exception):    ...

What does it mean? Are there any differences from:

class BadStatus(Exception):    pass