]> crepu.dev Git - config.git/blame - djavu-asus/elpy/rpc-venv/lib/python3.11/site-packages/parso-0.8.3.dist-info/METADATA
Configuracion en desarrollo PC pega
[config.git] / djavu-asus / elpy / rpc-venv / lib / python3.11 / site-packages / parso-0.8.3.dist-info / METADATA
CommitLineData
53e6db90
DC
1Metadata-Version: 2.1
2Name: parso
3Version: 0.8.3
4Summary: A Python Parser
5Home-page: https://github.com/davidhalter/parso
6Author: David Halter
7Author-email: davidhalter88@gmail.com
8Maintainer: David Halter
9Maintainer-email: davidhalter88@gmail.com
10License: MIT
11Keywords: python parser parsing
12Platform: any
13Classifier: Development Status :: 4 - Beta
14Classifier: Environment :: Plugins
15Classifier: Intended Audience :: Developers
16Classifier: License :: OSI Approved :: MIT License
17Classifier: Operating System :: OS Independent
18Classifier: Programming Language :: Python :: 3
19Classifier: Programming Language :: Python :: 3.6
20Classifier: Programming Language :: Python :: 3.7
21Classifier: Programming Language :: Python :: 3.8
22Classifier: Programming Language :: Python :: 3.9
23Classifier: Topic :: Software Development :: Libraries :: Python Modules
24Classifier: Topic :: Text Editors :: Integrated Development Environments (IDE)
25Classifier: Topic :: Utilities
26Classifier: Typing :: Typed
27Requires-Python: >=3.6
28Provides-Extra: qa
29Requires-Dist: flake8 (==3.8.3) ; extra == 'qa'
30Requires-Dist: mypy (==0.782) ; extra == 'qa'
31Provides-Extra: testing
32Requires-Dist: docopt ; extra == 'testing'
33Requires-Dist: pytest (<6.0.0) ; extra == 'testing'
34
35###################################################################
36parso - A Python Parser
37###################################################################
38
39
40.. image:: https://github.com/davidhalter/parso/workflows/Build/badge.svg?branch=master
41 :target: https://github.com/davidhalter/parso/actions
42 :alt: GitHub Actions build status
43
44.. image:: https://coveralls.io/repos/github/davidhalter/parso/badge.svg?branch=master
45 :target: https://coveralls.io/github/davidhalter/parso?branch=master
46 :alt: Coverage Status
47
48.. image:: https://pepy.tech/badge/parso
49 :target: https://pepy.tech/project/parso
50 :alt: PyPI Downloads
51
52.. image:: https://raw.githubusercontent.com/davidhalter/parso/master/docs/_static/logo_characters.png
53
54Parso is a Python parser that supports error recovery and round-trip parsing
55for different Python versions (in multiple Python versions). Parso is also able
56to list multiple syntax errors in your python file.
57
58Parso has been battle-tested by jedi_. It was pulled out of jedi to be useful
59for other projects as well.
60
61Parso consists of a small API to parse Python and analyse the syntax tree.
62
63A simple example:
64
65.. code-block:: python
66
67 >>> import parso
68 >>> module = parso.parse('hello + 1', version="3.9")
69 >>> expr = module.children[0]
70 >>> expr
71 PythonNode(arith_expr, [<Name: hello@1,0>, <Operator: +>, <Number: 1>])
72 >>> print(expr.get_code())
73 hello + 1
74 >>> name = expr.children[0]
75 >>> name
76 <Name: hello@1,0>
77 >>> name.end_pos
78 (1, 5)
79 >>> expr.end_pos
80 (1, 9)
81
82To list multiple issues:
83
84.. code-block:: python
85
86 >>> grammar = parso.load_grammar()
87 >>> module = grammar.parse('foo +\nbar\ncontinue')
88 >>> error1, error2 = grammar.iter_errors(module)
89 >>> error1.message
90 'SyntaxError: invalid syntax'
91 >>> error2.message
92 "SyntaxError: 'continue' not properly in loop"
93
94Resources
95=========
96
97- `Testing <https://parso.readthedocs.io/en/latest/docs/development.html#testing>`_
98- `PyPI <https://pypi.python.org/pypi/parso>`_
99- `Docs <https://parso.readthedocs.org/en/latest/>`_
100- Uses `semantic versioning <https://semver.org/>`_
101
102Installation
103============
104
105 pip install parso
106
107Future
108======
109
110- There will be better support for refactoring and comments. Stay tuned.
111- There's a WIP PEP8 validator. It's however not in a good shape, yet.
112
113Known Issues
114============
115
116- `async`/`await` are already used as keywords in Python3.6.
117- `from __future__ import print_function` is not ignored.
118
119
120Acknowledgements
121================
122
123- Guido van Rossum (@gvanrossum) for creating the parser generator pgen2
124 (originally used in lib2to3).
125- `Salome Schneider <https://www.crepes-schnaegg.ch/cr%C3%AApes-schn%C3%A4gg/kunst-f%C3%BCrs-cr%C3%AApes-mobil/>`_
126 for the extremely awesome parso logo.
127
128
129.. _jedi: https://github.com/davidhalter/jedi
130
131
132.. :changelog:
133
134Changelog
135---------
136
137Unreleased
138++++++++++
139
1400.8.3 (2021-11-30)
141++++++++++++++++++
142
143- Add basic support for Python 3.11 and 3.12
144
1450.8.2 (2021-03-30)
146++++++++++++++++++
147
148- Various small bugfixes
149
1500.8.1 (2020-12-10)
151++++++++++++++++++
152
153- Various small bugfixes
154
1550.8.0 (2020-08-05)
156++++++++++++++++++
157
158- Dropped Support for Python 2.7, 3.4, 3.5
159- It's possible to use ``pathlib.Path`` objects now in the API
160- The stubs are gone, we are now using annotations
161- ``namedexpr_test`` nodes are now a proper class called ``NamedExpr``
162- A lot of smaller refactorings
163
1640.7.1 (2020-07-24)
165++++++++++++++++++
166
167- Fixed a couple of smaller bugs (mostly syntax error detection in
168 ``Grammar.iter_errors``)
169
170This is going to be the last release that supports Python 2.7, 3.4 and 3.5.
171
1720.7.0 (2020-04-13)
173++++++++++++++++++
174
175- Fix a lot of annoying bugs in the diff parser. The fuzzer did not find
176 issues anymore even after running it for more than 24 hours (500k tests).
177- Small grammar change: suites can now contain newlines even after a newline.
178 This should really not matter if you don't use error recovery. It allows for
179 nicer error recovery.
180
1810.6.2 (2020-02-27)
182++++++++++++++++++
183
184- Bugfixes
185- Add Grammar.refactor (might still be subject to change until 0.7.0)
186
1870.6.1 (2020-02-03)
188++++++++++++++++++
189
190- Add ``parso.normalizer.Issue.end_pos`` to make it possible to know where an
191 issue ends
192
1930.6.0 (2020-01-26)
194++++++++++++++++++
195
196- Dropped Python 2.6/Python 3.3 support
197- del_stmt names are now considered as a definition
198 (for ``name.is_definition()``)
199- Bugfixes
200
2010.5.2 (2019-12-15)
202++++++++++++++++++
203
204- Add include_setitem to get_definition/is_definition and get_defined_names (#66)
205- Fix named expression error listing (#89, #90)
206- Fix some f-string tokenizer issues (#93)
207
2080.5.1 (2019-07-13)
209++++++++++++++++++
210
211- Fix: Some unicode identifiers were not correctly tokenized
212- Fix: Line continuations in f-strings are now working
213
2140.5.0 (2019-06-20)
215++++++++++++++++++
216
217- **Breaking Change** comp_for is now called sync_comp_for for all Python
218 versions to be compatible with the Python 3.8 Grammar
219- Added .pyi stubs for a lot of the parso API
220- Small FileIO changes
221
2220.4.0 (2019-04-05)
223++++++++++++++++++
224
225- Python 3.8 support
226- FileIO support, it's now possible to use abstract file IO, support is alpha
227
2280.3.4 (2019-02-13)
229+++++++++++++++++++
230
231- Fix an f-string tokenizer error
232
2330.3.3 (2019-02-06)
234+++++++++++++++++++
235
236- Fix async errors in the diff parser
237- A fix in iter_errors
238- This is a very small bugfix release
239
2400.3.2 (2019-01-24)
241+++++++++++++++++++
242
243- 20+ bugfixes in the diff parser and 3 in the tokenizer
244- A fuzzer for the diff parser, to give confidence that the diff parser is in a
245 good shape.
246- Some bugfixes for f-string
247
2480.3.1 (2018-07-09)
249+++++++++++++++++++
250
251- Bugfixes in the diff parser and keyword-only arguments
252
2530.3.0 (2018-06-30)
254+++++++++++++++++++
255
256- Rewrote the pgen2 parser generator.
257
2580.2.1 (2018-05-21)
259+++++++++++++++++++
260
261- A bugfix for the diff parser.
262- Grammar files can now be loaded from a specific path.
263
2640.2.0 (2018-04-15)
265+++++++++++++++++++
266
267- f-strings are now parsed as a part of the normal Python grammar. This makes
268 it way easier to deal with them.
269
2700.1.1 (2017-11-05)
271+++++++++++++++++++
272
273- Fixed a few bugs in the caching layer
274- Added support for Python 3.7
275
2760.1.0 (2017-09-04)
277+++++++++++++++++++
278
279- Pulling the library out of Jedi. Some APIs will definitely change.
280
281