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
`group_comments`| bool | `#!py3 False` | Group consecutive Python comments as one `SourceText` entry.
61
65
`decode_escapes`| bool | `#!py3 True` | Decode escapes and strip out format variables. Behavior is based on the string type that is encountered. This affects both docstrings and non-docstrings.
62
66
`strings`| string | `#!py3 False` | Return `SourceText` entries for each string (non-docstring).
63
-
`string_types`| string | `#!py3 fu` | Specifies which string types `strings` searches: bytes (`b`), format (`f`), raw (`r`), and Unicode (`u`). `*` captures all strings, or when used with a type, captures all variants of that type `r*`. This does not affect docstrings. When `docstrings` is enabled, all docstrings are parsed.
67
+
`string_types`| string | `#!py3 'ftu'` | Specifies which string types `strings` searches: bytes (`b`), format (`f`), template (`t`), raw (`r`), and Unicode (`u`). `*` captures all strings, or when used with a type, captures all variants of that type `r*`. This does not affect docstrings. When `docstrings` is enabled, all docstrings are parsed.
0 commit comments