All patches and comments are welcome. Please squash your changes to logical
commits before using git-format-patch and git-send-email to
patches@git.madduck.net.
If you'd read over the Git project's submission guidelines and adhered to them,
I'd be especially grateful.
   1 # The (future of the) Black code style
 
   4 Changes to this document often aren't tied and don't relate to releases of
 
   5 _Black_. It's recommended that you read the latest version available.
 
   8 ## Using backslashes for with statements
 
  10 [Backslashes are bad and should be never be used](labels/why-no-backslashes) however
 
  11 there is one exception: `with` statements using multiple context managers. Before Python
 
  12 3.9 Python's grammar does not allow organizing parentheses around the series of context
 
  15 We don't want formatting like:
 
  18 with make_context_manager1() as cm1, make_context_manager2() as cm2, make_context_manager3() as cm3, make_context_manager4() as cm4:
 
  19     ...  # nothing to split on - line too long
 
  22 So _Black_ will eventually format it like this:
 
  26      make_context_manager(1) as cm1, \
 
  27      make_context_manager(2) as cm2, \
 
  28      make_context_manager(3) as cm3, \
 
  29      make_context_manager(4) as cm4 \
 
  31     ...  # backslashes and an ugly stranded colon
 
  34 Although when the target version is Python 3.9 or higher, _Black_ will use parentheses
 
  35 instead since they're allowed in Python 3.9 and higher.
 
  39 Experimental, potentially disruptive style changes are gathered under the `--preview`
 
  40 CLI flag. At the end of each year, these changes may be adopted into the default style,
 
  41 as described in [The Black Code Style](./index.rst). Because the functionality is
 
  42 experimental, feedback and issue reports are highly encouraged!
 
  44 ### Improved string processing
 
  46 _Black_ will split long string literals and merge short ones. Parentheses are used where
 
  47 appropriate. When split, parts of f-strings that don't need formatting are converted to
 
  48 plain strings. User-made splits are respected when they do not exceed the line length
 
  49 limit. Line continuation backslashes are converted into parenthesized strings.
 
  50 Unnecessary parentheses are stripped. The stability and status of this feature is
 
  51 tracked in [this issue](https://github.com/psf/black/issues/2188).
 
  53 ### Removing trailing newlines after code block open
 
  55 _Black_ will remove trailing newlines after code block openings. That means that the
 
  61     print("The line above me will be deleted!")
 
  63     print("But the line above me won't!")
 
  70     print("The line above me will be deleted!")
 
  72     print("But the line above me won't!")
 
  75 This new feature will be applied to **all code blocks**: `def`, `class`, `if`, `for`,
 
  76 `while`, `with`, `case` and `match`.