* Docstring from PEP 257 is filled incorrectly by Emacs
@ 2017-10-26 1:33 Radon Rosborough
2017-10-26 4:05 ` Clément Pit-Claudel
0 siblings, 1 reply; 2+ messages in thread
From: Radon Rosborough @ 2017-10-26 1:33 UTC (permalink / raw)
To: emacs-devel
Hi all,
I recently noticed that Emacs fills an example docstring given [1] in
PEP 257 incorrectly. With `python-fill-docstring' at its default value
of `pep-257', the following code sample:
def complex(real=0.0, imag=0.0):
"""Form a complex number.
Keyword arguments:
real -- the real part (default 0.0)
imag -- the imaginary part (default 0.0)
"""
if imag == 0.0 and real == 0.0:
return complex_zero
...
is filled to:
def complex(real=0.0, imag=0.0):
"""Form a complex number.
Keyword arguments: real -- the real part (default 0.0) imag -- the
imaginary part (default 0.0)
"""
if imag == 0.0 and real == 0.0:
return complex_zero
...
This seems erroneous to me since the value of `python-fill-docstring'
would suggest PEP 257 compliance. I also checked out the third-party
package `python-docstring' [2], and it has the same behavior. Do we
want to change the behavior of `python-docstring-fill', improve the
documentation to note this potentially confusing case, or leave it as
is?
Best,
Radon
[1]: https://www.python.org/dev/peps/pep-0257/#multi-line-docstrings
[2]: https://github.com/glyph/python-docstring-mode
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2017-10-26 4:05 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-10-26 1:33 Docstring from PEP 257 is filled incorrectly by Emacs Radon Rosborough
2017-10-26 4:05 ` Clément Pit-Claudel
Code repositories for project(s) associated with this external index
https://git.savannah.gnu.org/cgit/emacs.git
https://git.savannah.gnu.org/cgit/emacs/org-mode.git
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.