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 doctest format can appear in both python code and other formats, but docstrings need special attention: naive reformatting may cause triple-quoted strings to conflict with the docstring quotes.
To solve this, it would be good to somehow detect the type of docstring quote we're in instead of trying to reproduce exactly the quote we had before. I'm guessing that's really difficult to do using a line parser, though.
The text was updated successfully, but these errors were encountered:
The
doctest
format can appear in both python code and other formats, but docstrings need special attention: naive reformatting may cause triple-quoted strings to conflict with the docstring quotes.To solve this, it would be good to somehow detect the type of docstring quote we're in instead of trying to reproduce exactly the quote we had before. I'm guessing that's really difficult to do using a line parser, though.
The text was updated successfully, but these errors were encountered: