18.4a3
This commit is contained in:
parent
09f5ee3a19
commit
1445bea97e
@ -522,7 +522,7 @@ More details can be found in [CONTRIBUTING](CONTRIBUTING.md).
|
|||||||
|
|
||||||
## Change Log
|
## Change Log
|
||||||
|
|
||||||
### 18.4a3 (unreleased)
|
### 18.4a3
|
||||||
|
|
||||||
* added a "cache"; files already reformatted that haven't changed on disk
|
* added a "cache"; files already reformatted that haven't changed on disk
|
||||||
won't be reformatted again (#109)
|
won't be reformatted again (#109)
|
||||||
@ -551,6 +551,7 @@ More details can be found in [CONTRIBUTING](CONTRIBUTING.md).
|
|||||||
|
|
||||||
* fixed missing splits of ternary expressions (#141)
|
* fixed missing splits of ternary expressions (#141)
|
||||||
|
|
||||||
|
|
||||||
### 18.4a2
|
### 18.4a2
|
||||||
|
|
||||||
* fixed parsing of unaligned standalone comments (#99, #112)
|
* fixed parsing of unaligned standalone comments (#99, #112)
|
||||||
|
3
black.py
3
black.py
@ -43,8 +43,9 @@
|
|||||||
from blib2to3.pgen2 import driver, token
|
from blib2to3.pgen2 import driver, token
|
||||||
from blib2to3.pgen2.parse import ParseError
|
from blib2to3.pgen2.parse import ParseError
|
||||||
|
|
||||||
__version__ = "18.4a2"
|
__version__ = "18.4a3"
|
||||||
DEFAULT_LINE_LENGTH = 88
|
DEFAULT_LINE_LENGTH = 88
|
||||||
|
|
||||||
# types
|
# types
|
||||||
syms = pygram.python_symbols
|
syms = pygram.python_symbols
|
||||||
FileContent = str
|
FileContent = str
|
||||||
|
Loading…
Reference in New Issue
Block a user