Commit graph

6 commits

Author SHA1 Message Date
adam
4f32043645 py-parso: updated to 0.5.1
0.5.1:
- Fix: Some unicode identifiers were not correctly tokenized
- Fix: Line continuations in f-strings are now working
2019-07-18 07:38:50 +00:00
adam
90125022b1 py-parso: updated to 0.5.0
0.5.0:
- **Breaking Change** comp_for is now called sync_comp_for for all Python
  versions to be compatible with the Python 3.8 Grammar
- Added .pyi stubs for a lot of the parso API
- Small FileIO changes
2019-07-03 20:26:29 +00:00
adam
de9d435ad7 py-parso: updated to 0.4.0
0.4.0
- Python 3.8 support
- FileIO support, it's now possible to use abstract file IO, support is alpha
2019-04-29 10:35:04 +00:00
adam
76fe4392a3 py-parso: updated to 0.3.4
0.3.4:
- Fix an f-string tokenizer error

0.3.3:
- Fix async errors in the diff parser
- A fix in iter_errors
- This is a very small bugfix release

0.3.2:
- 20+ bugfixes in the diff parser and 3 in the tokenizer
- A fuzzer for the diff parser, to give confidence that the diff parser is in a
  good shape.
- Some bugfixes for f-string
2019-02-19 12:31:55 +00:00
adam
1cb5aa7c26 py-parso: updated to 0.3.1
0.3.1:
- Bugfixes in the diff parser and keyword-only arguments

0.3.0:
- Rewrote the pgen2 parser generator.

0.2.1:
- A bugfix for the diff parser.
- Grammar files can now be loaded from a specific path.

0.2.0:
- f-strings are now parsed as a part of the normal Python grammar. This makes
  it way easier to deal with them.

0.1.1:
- Fixed a few bugs in the caching layer
- Added support for Python 3.7
2018-12-28 14:18:32 +00:00
adam
c74af3dfee Parso is a Python parser that supports error recovery and round-trip parsing
for different Python versions (in multiple Python versions). Parso is also
able to list multiple syntax errors in your python file.

Parso has been battle-tested by jedi. It was pulled out of jedi to be useful
for other projects as well.

Parso consists of a small API to parse Python and analyse the syntax tree.
2017-10-16 17:01:50 +00:00