Python3のEllipsisリテラル...
の一風変わった使い方。擬似コード風のプレースホルダとして利用可能。
def func(): ... # 以下と等価 # def func(): # pass
2008年1月のPython3検討メーリングリスト*1より、Guido van Rossum氏*2による投稿を引用。
Some folks thought it would be cute to be able to write incomplete
code like this:class C: def meth(self): ... ...and have it be syntactically correct.
[Python-3000] Ellipsis Literal
関連URL