Hello Lasse,
> I have a Connection class that exposes members for the hostname, etc.
>
> ie.
>
> class Connection:
> def __init__(...):
> self.server = server
>
> is there any way to document this "server" member? The only way I know
> of right now is to expose it as a property a
I have a Connection class that exposes members for the hostname, etc.
ie.
class Connection:
def __init__(...):
self.server = server
is there any way to document this "server" member? The only way I know
of right now is to expose it as a property and add the doc string to
that def