diff options
author | tgingold <tgingold@users.noreply.github.com> | 2022-12-24 16:33:33 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-12-24 16:33:33 +0100 |
commit | a1b9335c08140fc9fc5d02591f3cb2870c5ba988 (patch) | |
tree | ea1659124a516bcadb592f836c3426f93d1b09fb /pyGHDL/dom/__init__.py | |
parent | fd0c0bc0b8357f58d44f9b7e03367d5c2e3e906f (diff) | |
parent | 1e5aad63f64ff9b91b1a10c16f82fa29de42dbb4 (diff) | |
download | ghdl-a1b9335c08140fc9fc5d02591f3cb2870c5ba988.tar.gz ghdl-a1b9335c08140fc9fc5d02591f3cb2870c5ba988.tar.bz2 ghdl-a1b9335c08140fc9fc5d02591f3cb2870c5ba988.zip |
Merge pull request #2282 from Paebbels/paebbels/ams
Activate VHDL-2008 and VHDL-AMS based on selected VHDL dialect
Diffstat (limited to 'pyGHDL/dom/__init__.py')
-rw-r--r-- | pyGHDL/dom/__init__.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/pyGHDL/dom/__init__.py b/pyGHDL/dom/__init__.py index 12caccc1b..e60a4e211 100644 --- a/pyGHDL/dom/__init__.py +++ b/pyGHDL/dom/__init__.py @@ -9,8 +9,6 @@ # Authors: # Patrick Lehmann # -# Package package: Document object model (DOM) for pyGHDL.libghdl. -# # License: # ============================================================================ # Copyright (C) 2019-2021 Tristan Gingold @@ -30,6 +28,9 @@ # # SPDX-License-Identifier: GPL-2.0-or-later # ============================================================================ +""" +Document object model (DOM) for :mod:`pyGHDL.libghdl` based on :doc:`pyVHDLModel <vhdlmodel:index>`. +""" from pathlib import Path from pyTooling.Decorators import export |