Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion pythonx/jedi
Submodule jedi updated 170 files
3 changes: 1 addition & 2 deletions pythonx/jedi_vim.py
Original file line number Diff line number Diff line change
Expand Up @@ -270,7 +270,6 @@ def get_script(source=None, column=None):

return jedi.Script(
source, row, column, buf_path,
encoding=vim_eval('&encoding') or 'latin1',
environment=get_environment(),
)

Expand Down Expand Up @@ -1152,7 +1151,7 @@ def _tabnew(path, options=''):


def escape_file_path(path):
return path.replace(' ', r'\ ')
return str(path).replace(' ', r'\ ')


def print_to_stdout(level, str_out):
Expand Down
2 changes: 1 addition & 1 deletion pythonx/parso
Submodule parso updated 77 files
+1 −1 .gitignore
+22 −16 .travis.yml
+2 −0 AUTHORS.txt
+41 −0 CHANGELOG.rst
+0 −1 MANIFEST.in
+5 −1 README.rst
+17 −35 conftest.py
+3 −3 deploy-master.sh
+9 −9 docs/conf.py
+6 −6 docs/docs/development.rst
+2 −2 parso/__init__.py
+0 −19 parso/__init__.pyi
+0 −66 parso/_compatibility.py
+105 −32 parso/cache.py
+8 −5 parso/file_io.py
+78 −70 parso/grammar.py
+0 −38 parso/grammar.pyi
+31 −16 parso/normalizer.py
+8 −7 parso/parser.py
+0 −1 parso/pgen2/__init__.pyi
+27 −22 parso/pgen2/generator.py
+0 −38 parso/pgen2/generator.pyi
+28 −27 parso/pgen2/grammar_parser.py
+0 −20 parso/pgen2/grammar_parser.pyi
+0 −0 parso/py.typed
+294 −126 parso/python/diff.py
+252 −126 parso/python/errors.py
+0 −143 parso/python/grammar27.txt
+49 −31 parso/python/grammar310.txt
+0 −134 parso/python/grammar33.txt
+0 −134 parso/python/grammar34.txt
+2 −2 parso/python/grammar36.txt
+2 −2 parso/python/grammar37.txt
+3 −3 parso/python/grammar38.txt
+4 −4 parso/python/grammar39.txt
+2 −10 parso/python/issue_list.txt
+9 −15 parso/python/parser.py
+74 −36 parso/python/pep8.py
+2 −2 parso/python/prefix.py
+21 −17 parso/python/token.py
+0 −30 parso/python/token.pyi
+148 −174 parso/python/tokenize.py
+0 −24 parso/python/tokenize.pyi
+34 −62 parso/python/tree.py
+22 −16 parso/tree.py
+68 −50 parso/utils.py
+0 −29 parso/utils.pyi
+3 −3 scripts/diff_parser_profile.py
+13 −0 setup.cfg
+44 −40 setup.py
+55 −59 test/failing_examples.py
+30 −13 test/fuzz_diff_parser.py
+72 −7 test/normalizer_issue_files/allowed_syntax.py
+0 −2 test/normalizer_issue_files/allowed_syntax_python2.py
+0 −3 test/normalizer_issue_files/allowed_syntax_python3.4.py
+0 −23 test/normalizer_issue_files/allowed_syntax_python3.5.py
+0 −45 test/normalizer_issue_files/allowed_syntax_python3.6.py
+0 −0 test/normalizer_issue_files/python.py
+0 −14 test/normalizer_issue_files/python2.7.py
+0 −29 test/test_absolute_import.py
+73 −24 test/test_cache.py
+515 −56 test/test_diff_parser.py
+65 −1 test/test_error_recovery.py
+13 −0 test/test_get_code.py
+1 −1 test/test_load_grammar.py
+3 −3 test/test_normalizer_issues_files.py
+3 −4 test/test_old_fast_parser.py
+10 −10 test/test_param_splitting.py
+19 −21 test/test_parser.py
+21 −20 test/test_parser_tree.py
+1 −0 test/test_pep8.py
+167 −123 test/test_pgen2.py
+2 −7 test/test_prefix.py
+102 −18 test/test_python_errors.py
+51 −38 test/test_tokenize.py
+39 −1 test/test_utils.py
+0 −15 tox.ini