
Python does not consider f-strings to be docstrings, so we probably shouldn't be formatting them as such Fixes #4018 Co-authored-by: Alex Waygood <Alex.Waygood@Gmail.com>
12 lines
404 B
Python
12 lines
404 B
Python
# flags: --preview --skip-string-normalization
|
|
def do_not_touch_this_prefix():
|
|
R"""There was a bug where docstring prefixes would be normalized even with -S."""
|
|
|
|
|
|
def do_not_touch_this_prefix2():
|
|
FR'There was a bug where docstring prefixes would be normalized even with -S.'
|
|
|
|
|
|
def do_not_touch_this_prefix3():
|
|
u'''There was a bug where docstring prefixes would be normalized even with -S.'''
|