Open zsol opened 2 years ago
Currently for a function like this:
# foo def bar(): # lol """my docstring"""
The generated documentation will look like:
("foo", "lol", "my docstring")
This is suboptimal, we want my docstring to display prominently, but also keep foo and lol somewhere.
my docstring
foo
lol
Also:
<pre>
Currently for a function like this:
The generated documentation will look like:
This is suboptimal, we want
my docstring
to display prominently, but also keepfoo
andlol
somewhere.