Does everyone use #Python's `object()` for unique tokens? Like:
```
no_match = object()
val = some_dict.get('key', no_match)
if val is not no_match:
do_something()
```
I don't know what else `object()` would be used for (and why they'd keep it).
@meejah that's kinda cool. If I ever used that though, I'd probably drop it the first chance I got in order to reduce dependencies. Would probably like it better as a code generation tool.
@2ck I have certainly done that (and have seen it used).
There's also libraries like https://constantly.readthedocs.io/en/latest/ for a similar use-case (but maybe .. a bit more "structured"?)
#python