diff options
author | Benedikt Tutzer <e1225461@student.tuwien.ac.at> | 2018-10-25 16:32:28 +0200 |
---|---|---|
committer | Benedikt Tutzer <e1225461@student.tuwien.ac.at> | 2018-10-25 16:32:28 +0200 |
commit | 5c59429893b24ff539c65172066a6f343d3dc28e (patch) | |
tree | f47bbc795961097ac96fe1ae6afc4f0b53d09a77 | |
parent | 0b81629779f70edf27b77939a3b291ec1ea35102 (diff) | |
download | yosys-5c59429893b24ff539c65172066a6f343d3dc28e.tar.gz yosys-5c59429893b24ff539c65172066a6f343d3dc28e.tar.bz2 yosys-5c59429893b24ff539c65172066a6f343d3dc28e.zip |
added all variable in __init__.py to allow importing of the whole module
-rw-r--r-- | __init__.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/__init__.py b/__init__.py index 118ba306b..330fd6d86 100644 --- a/__init__.py +++ b/__init__.py @@ -1,3 +1,5 @@ import os import sys sys.setdlopenflags(os.RTLD_NOW | os.RTLD_GLOBAL) + +__all__ = ["libyosys"] |