I keep seeing docstrings that have lines that read like this:
param : :obj: str
I can't find a reference to what :obj:
stands for or does. It seems like it would denote a str
object, but I also see
param : int
which doesn't seem to jibe.
Thanks.