标签: python python-3.x
我在aiohttp中看到了这个省略号/三点运算符:
aiohttp
if debug is ...: debug = loop.get_debug()
**some_kwargs
*some_args
在这个特定的例子中:
>>> ... Ellipsis >>> x = Ellipsis >>> x is ... True >>> ... is ... True
代码: