About Ellipsis in Python 3

You can use an ellipsis interchangeably with pass to mark some class or method as unfinished:

class AboutView(TemplateView):
    ...

def notify_subscribers(subscribers, post):
    ...

Tips and Tricks Programming Python 3