Open znichollscr opened 4 months ago
Hmm ok, having read #8, I suspect the answer to this is that it is impossible. If any maintainers/experts think otherwise though, I'd be interested to hear their thoughts.
You can wrap make_class
with your own function and set the docstring yourself. It's only a matter of C.__doc__ = "docstring"
, right?
You can wrap make_class with your own function and set the docstring yourself. It's only a matter of C.doc = "docstring", right?
I'm not sure that works in all cases (at least #8 discusses lots of cases where it appears more complex), but that is certainly a possible workaround.
If I remember correctly, just attaching __doc__
to something doesn't work. But I'm open to be proven wrong here.
also #1294 seems to be tangentially related
Hi there, I might have missed something. If I have my apologies.
My question is pretty basic: is there a way to add a docstring to class created with
make_class
? For exampleThanks for any help