0.3.4 release

This commit is contained in:
Dave Halter
2019-02-13 00:18:40 +01:00
parent 3f6fc8a5ad
commit acccb4f28d
2 changed files with 6 additions and 1 deletions

View File

@@ -3,6 +3,11 @@
Changelog Changelog
--------- ---------
0.3.4 (2018-02-13)
+++++++++++++++++++
- Fix an f-string tokenizer error
0.3.3 (2018-02-06) 0.3.3 (2018-02-06)
+++++++++++++++++++ +++++++++++++++++++

View File

@@ -43,7 +43,7 @@ from parso.grammar import Grammar, load_grammar
from parso.utils import split_lines, python_bytes_to_unicode from parso.utils import split_lines, python_bytes_to_unicode
__version__ = '0.3.3' __version__ = '0.3.4'
def parse(code=None, **kwargs): def parse(code=None, **kwargs):