You've already forked macports-ports
mirror of
https://github.com/encounter/macports-ports.git
synced 2026-07-10 12:19:27 -07:00
12 lines
459 B
Diff
12 lines
459 B
Diff
--- jedi/parser_utils.py.orig 2020-09-01 10:57:58.000000000 +0300
|
|
+++ jedi/parser_utils.py 2020-09-01 10:58:17.000000000 +0300
|
|
@@ -277,7 +277,7 @@
|
|
Basically access the cached code lines in parso. This is not the nicest way
|
|
to do this, but we avoid splitting all the lines again.
|
|
"""
|
|
- return parser_cache[grammar._hashed][path].lines
|
|
+ return parser_cache[grammar._hashed][str(path)].lines
|
|
|
|
|
|
def cut_value_at_position(leaf, position):
|