-
-
Notifications
You must be signed in to change notification settings - Fork 372
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update submodule pythonx/parso fb010f2...c864ca6
* pythonx/parso fb010f2...c864ca6 (14): > Bump version to 0.6.0 > Make sure iter_funcdefs includes async functions with decorators, fixes #98 > Add a bit to the changelog > del_stmt is now considered a name definition > Forgot to increase the pickle version > Revision on fstring issues (#100) > Revision on assignment errors (#97) > Add a Changelog note about dropping 2.6/3.3 > Fix a Python 2.7 issue > Get rid of Python 3.3 artifacts > Remove Python 2.6 grammar > Merge branch 'rm-2.6' of https://github.com/hugovk/parso > Make sure to limit the amount of cached files parso stores, fixes davidhalter/jedi#1340 > Fix simple typo: utitilies -> utilities
- Loading branch information
Showing
1 changed file
with
1 addition
and
1 deletion.
There are no files selected for viewing
Submodule parso
updated
25 files
+1 −0 | AUTHORS.txt | |
+8 −0 | CHANGELOG.rst | |
+2 −2 | conftest.py | |
+1 −1 | parso/__init__.py | |
+5 −39 | parso/_compatibility.py | |
+37 −4 | parso/cache.py | |
+1 −1 | parso/grammar.py | |
+16 −2 | parso/python/errors.py | |
+0 −159 | parso/python/grammar26.txt | |
+1 −1 | parso/python/issue_list.txt | |
+0 −2 | parso/python/parser.py | |
+4 −5 | parso/python/tokenize.py | |
+17 −3 | parso/python/tree.py | |
+3 −2 | parso/tree.py | |
+5 −4 | parso/utils.py | |
+1 −2 | setup.py | |
+14 −4 | test/failing_examples.py | |
+52 −0 | test/test_cache.py | |
+0 −1 | test/test_diff_parser.py | |
+1 −1 | test/test_load_grammar.py | |
+1 −1 | test/test_normalizer_issues_files.py | |
+17 −1 | test/test_parser_tree.py | |
+1 −12 | test/test_python_errors.py | |
+10 −10 | test/test_tokenize.py | |
+1 −3 | tox.ini |