12 lines
394 B
Python
12 lines
394 B
Python
# flags: --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.'''
|