Update document now that paren wrapping CMs on Python 3.9+ is impleme… · psf/black@d950f15 (original) (raw)

File tree

Original file line number Diff line number Diff line change
@@ -31,8 +31,8 @@ with \
31 31 ... # backslashes and an ugly stranded colon
32 32 ```
33 33
34 -Although when the target version is Python 3.9 or higher, _Black_ will, when we
35 -implement this, use parentheses instead since they're allowed in Python 3.9 and higher.
34 +Although when the target version is Python 3.9 or higher, _Black_ uses parentheses
35 +instead in `--preview` mode (see below) since they're allowed in Python 3.9 and higher.
36 36
37 37 An alternative to consider if the backslashes in the above formatting are undesirable is
38 38 to use {external:py:obj}`contextlib.ExitStack` to combine context managers in the