diff options
author | Tristan Gingold <tgingold@free.fr> | 2017-10-06 20:52:49 +0200 |
---|---|---|
committer | Tristan Gingold <tgingold@free.fr> | 2017-10-06 20:52:49 +0200 |
commit | 09733cedabdaef6c1adba4473ce4abd863defa89 (patch) | |
tree | d6d936c31f4fa18ed2475937127c25c391cd8c72 /src/vhdl/python/pnodespy.py | |
parent | f1c1deaa61dc79a1c6c15aafd1b90fb6be9d8b4c (diff) | |
download | ghdl-09733cedabdaef6c1adba4473ce4abd863defa89.tar.gz ghdl-09733cedabdaef6c1adba4473ce4abd863defa89.tar.bz2 ghdl-09733cedabdaef6c1adba4473ce4abd863defa89.zip |
python: add more interfaces.
Diffstat (limited to 'src/vhdl/python/pnodespy.py')
-rwxr-xr-x | src/vhdl/python/pnodespy.py | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/src/vhdl/python/pnodespy.py b/src/vhdl/python/pnodespy.py index 93cc3b26c..ced4931f6 100755 --- a/src/vhdl/python/pnodespy.py +++ b/src/vhdl/python/pnodespy.py @@ -12,13 +12,11 @@ libname = 'libghdl' def print_enum(name, vals): - n = 0 print print print 'class {0}:'.format(name) - for k in vals: + for n, k in enumerate(vals): print ' {0} = {1}'.format(k, n) - n += 1 def do_class_kinds(): @@ -78,6 +76,7 @@ def do_libghdl_meta(): print 'from libghdl import libghdl' print """ + # From nodes_meta get_fields_first = libghdl.nodes_meta__get_fields_first @@ -97,9 +96,9 @@ get_field_attribute = libghdl.nodes_meta__get_field_attribute""" def do_libghdl_names(): pat_name_first = re.compile( - ' Name_(\w+)\s+: constant Name_Id := (\d+);') + r' Name_(\w+)\s+: constant Name_Id := (\d+);') pat_name_def = re.compile( - ' Name_(\w+)\s+:\s+constant Name_Id :=\s+Name_(\w+)( \+ (\d+))?;') + r' Name_(\w+)\s+:\s+constant Name_Id :=\s+Name_(\w+)( \+ (\d+))?;') dict = {} lr = pnodes.linereader('../std_names.ads') while True: |