Skip to content

Commit

Permalink
Update discussion of AST safety check in README (#2159)
Browse files Browse the repository at this point in the history
  • Loading branch information
JelleZijlstra committed Apr 27, 2021
1 parent 76e1602 commit 807a65f
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
5 changes: 5 additions & 0 deletions CHANGES.md
Expand Up @@ -2,6 +2,11 @@

### Unreleased

#### _Black_

- Clarify that _Black_ may change the AST, especially when cleaning up docstrings.
(#2159)

#### _Packaging_

- Install `primer.json` (used by `black-primer` by default) with black. (#2154)
Expand Down
6 changes: 4 additions & 2 deletions README.md
Expand Up @@ -238,8 +238,10 @@ change in the future**. That being said, no drastic stylistic changes are planne
mostly responses to bug reports.

Also, as a temporary safety measure, _Black_ will check that the reformatted code still
produces a valid AST that is equivalent to the original. This slows it down. If you're
feeling confident, use `--fast`.
produces a valid AST that is mostly equivalent to the original. This slows it down. If
you're feeling confident, use `--fast`. In a few contexts, Black does make changes to
the AST: it cleans up whitespace in docstrings, adds or removes parentheses in some
`del` statements, and may move around type comments.

## The _Black_ code style

Expand Down

0 comments on commit 807a65f

Please sign in to comment.