From: whitequark Date: Wed, 26 Dec 2018 17:15:54 +0000 (+0000) Subject: hdl.mem: add missing __all__. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=1119df1151e670537488316330d313810ee06fff;p=nmigen.git hdl.mem: add missing __all__. --- diff --git a/nmigen/hdl/mem.py b/nmigen/hdl/mem.py index f000188..7273118 100644 --- a/nmigen/hdl/mem.py +++ b/nmigen/hdl/mem.py @@ -5,6 +5,9 @@ from .ast import * from .ir import Instance +__all__ = ["Memory"] + + class Memory: def __init__(self, width, depth, init=None, name=None, simulate=True): if not isinstance(width, int) or width < 0: