aboutsummaryrefslogtreecommitdiffstats
path: root/pyGHDL/lsp/document.py
diff options
context:
space:
mode:
authorTristan Gingold <tgingold@free.fr>2022-06-24 19:47:33 +0200
committerTristan Gingold <tgingold@free.fr>2022-06-25 06:50:56 +0200
commitd737564887fd1603c89a045e7b985b765c16d2d6 (patch)
tree05072e689982ca33935a156cde5fa108bd562f5d /pyGHDL/lsp/document.py
parentf682dca71469ded57bb637c29e41897672cffa99 (diff)
downloadghdl-d737564887fd1603c89a045e7b985b765c16d2d6.tar.gz
ghdl-d737564887fd1603c89a045e7b985b765c16d2d6.tar.bz2
ghdl-d737564887fd1603c89a045e7b985b765c16d2d6.zip
pyGHDL/lsp: load files as bytes string
Diffstat (limited to 'pyGHDL/lsp/document.py')
-rw-r--r--pyGHDL/lsp/document.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/pyGHDL/lsp/document.py b/pyGHDL/lsp/document.py
index dd7f694a1..2656606c6 100644
--- a/pyGHDL/lsp/document.py
+++ b/pyGHDL/lsp/document.py
@@ -35,9 +35,8 @@ class Document(object):
self._tree = nodes.Null_Iir
@staticmethod
- def load(source, dirname, filename):
+ def load(src_bytes, dirname, filename):
# Write text to file buffer.
- src_bytes = source.encode(Document.encoding, "replace")
src_len = len(src_bytes)
buf_len = src_len + Document.initial_gap_size
fileid = name_table.Get_Identifier(filename)