diff options
author | Tristan Gingold <tgingold@free.fr> | 2019-05-14 18:26:18 +0200 |
---|---|---|
committer | Tristan Gingold <tgingold@free.fr> | 2019-05-14 18:26:18 +0200 |
commit | 43d0db7f5a91f7c936faedc23afafeca27c6058d (patch) | |
tree | 3ad67169c6d5ca223291c3fc8dcb277538ce3397 /src/vhdl/python/libghdl | |
parent | 002baec84a46ad5926d75c664f2e8b4135e31d99 (diff) | |
download | ghdl-43d0db7f5a91f7c936faedc23afafeca27c6058d.tar.gz ghdl-43d0db7f5a91f7c936faedc23afafeca27c6058d.tar.bz2 ghdl-43d0db7f5a91f7c936faedc23afafeca27c6058d.zip |
python: adjust after renaming.
Diffstat (limited to 'src/vhdl/python/libghdl')
-rw-r--r-- | src/vhdl/python/libghdl/thin.py | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/src/vhdl/python/libghdl/thin.py b/src/vhdl/python/libghdl/thin.py index d8d507eae..5ff197175 100644 --- a/src/vhdl/python/libghdl/thin.py +++ b/src/vhdl/python/libghdl/thin.py @@ -49,40 +49,40 @@ class Lists: ("chunk_idx", c_int32), ("remain", c_int32)] - Iterate = libghdl.lists__iterate + Iterate = libghdl.vhdl__lists__iterate Iterate.argstype = [List_Type] Iterate.restype = Iterator - Is_Valid = libghdl.lists__is_valid + Is_Valid = libghdl.vhdl__lists__is_valid Is_Valid.argstype = [POINTER(Iterator)] Is_Valid.restype = c_bool - Next = libghdl.lists__next + Next = libghdl.vhdl__lists__next Next.argstype = [POINTER(Iterator)] Next.restype = None - Get_Element = libghdl.lists__get_element + Get_Element = libghdl.vhdl__lists__get_element Get_Element.argstype = [POINTER(Iterator)] Get_Element.restype = c_int32 - Get_Nbr_Elements = libghdl.lists__get_nbr_elements + Get_Nbr_Elements = libghdl.vhdl__lists__get_nbr_elements Get_Nbr_Elements.argtype = [List_Type] Get_Nbr_Elements.restype = c_int32 - Create_Iir_List = libghdl.lists__create_list + Create_Iir_List = libghdl.vhdl__lists__create_list - Destroy_Iir_List = libghdl.lists__destroy_list + Destroy_Iir_List = libghdl.vhdl__lists__destroy_list class Flists: Flist_Type = c_int32 Ffirst = 0 - Flast = libghdl.flists__flast + Flast = libghdl.vhdl__flists__flast - Length = libghdl.flists__length + Length = libghdl.vhdl__flists__length - Get_Nth_Element = libghdl.flists__get_nth_element + Get_Nth_Element = libghdl.vhdl__flists__get_nth_element # Files |