You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The original docstring regex removed sequences such as `r"""` from a
docstring regardless if it appeared at the beginning or at the end of
the docstring: `r"""Simulator"""` erroneously becomes `Simulato`.
However, `r` etc. are
[string prefixes](https://docs.python.org/3/reference/lexical_analysis.html#string-and-bytes-literals)
and do not appear at the end of a string.
Therefore, this commit changes the regex to match string prefixes only
at the beginning of the docstring and not at the end.
(ClosesFeneric#84)
Description
doxypypy produces a wrong result if a doctstring ends with a typical string prefix for example
r"""
:Input:
Output, note doxypypy ate the
r
:Testing other string prefixes. Affected:
r
u
R
U
fr
Fr
fR
FR
Workaround
Terminate all docstrings with
.
Version
commit a739b12
The text was updated successfully, but these errors were encountered: