diff options
author | tgingold <tgingold@users.noreply.github.com> | 2022-12-24 11:06:07 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-12-24 11:06:07 +0100 |
commit | 5bca94f83b0d44297f943ff0d0237ec216fc29e9 (patch) | |
tree | 1b045b05c55baeb2676cdbb0dcb00393c24557db /pyGHDL/libghdl/name_table.py | |
parent | 26bb3c572eaffafafd8de8ef09b8acc34f91656f (diff) | |
parent | 08a338e9568c333929c6863be60580619e3e77ff (diff) | |
download | ghdl-5bca94f83b0d44297f943ff0d0237ec216fc29e9.tar.gz ghdl-5bca94f83b0d44297f943ff0d0237ec216fc29e9.tar.bz2 ghdl-5bca94f83b0d44297f943ff0d0237ec216fc29e9.zip |
Merge pull request #2281 from Paebbels/paebbels/encoding
Configurable encoding for pyGHDL
Diffstat (limited to 'pyGHDL/libghdl/name_table.py')
-rw-r--r-- | pyGHDL/libghdl/name_table.py | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/pyGHDL/libghdl/name_table.py b/pyGHDL/libghdl/name_table.py index b29775213..e40bd635b 100644 --- a/pyGHDL/libghdl/name_table.py +++ b/pyGHDL/libghdl/name_table.py @@ -36,6 +36,7 @@ from ctypes import c_char, c_char_p from pyTooling.Decorators import export +from pyGHDL.libghdl import ENCODING from pyGHDL.libghdl._types import NameId from pyGHDL.libghdl._decorator import BindToLibGHDL @@ -73,7 +74,7 @@ def Get_Name_Ptr(Id: NameId) -> str: :param Id: NameId for the identifier to query. :return: Identifier as string. """ - return _Get_Name_Ptr(Id).decode("utf-8") + return _Get_Name_Ptr(Id).decode(ENCODING) # @export @@ -95,7 +96,7 @@ def Get_Character(Id: NameId) -> str: :param Id: NameId for the identifier to query. :return: Get the character of the identifier. """ - return _Get_Character(Id).decode("utf-8") + return _Get_Character(Id).decode(ENCODING) # @export @@ -119,5 +120,5 @@ def Get_Identifier(string: str) -> NameId: :param string: String to create or lookup. :return: Id in name table. """ - string = string.encode("utf-8") + string = string.encode(ENCODING) return _Get_Identifier(c_char_p(string), len(string)) |