This commit is contained in:
Łukasz Langa 2018-04-24 13:52:12 -07:00
parent 09f5ee3a19
commit 1445bea97e
2 changed files with 4 additions and 2 deletions

View File

@ -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)

View File

@ -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