Python Ellipsis#
You can use the ellipsis literal ...
to show the general structure of some code while keeping it valid Python, e.g.:
#!/usr/bin/env python
assert ... == Ellipsis
...
class Foo:
...
def f(self):
...
foo = Foo()
foo.f()
TIL: Loki LogQL Pattern Matching for uWSGI Logs
Wezterm