From: whitequark Date: Sat, 26 Jan 2019 22:59:33 +0000 (+0000) Subject: compat.fhdl.specials: fix __all__ list. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=f360732e61ebfea4bc540bb5989982a279d3c212;p=nmigen.git compat.fhdl.specials: fix __all__ list. --- diff --git a/nmigen/compat/fhdl/specials.py b/nmigen/compat/fhdl/specials.py index 494e73b..aa9c77f 100644 --- a/nmigen/compat/fhdl/specials.py +++ b/nmigen/compat/fhdl/specials.py @@ -3,12 +3,12 @@ import warnings from ...tools import deprecated, extend from ...hdl.ast import * from ...hdl.mem import Memory as NativeMemory -from ...hdl.ir import Fragment +from ...hdl.ir import Fragment, Instance from ...lib.io import TSTriple as NativeTSTriple, Tristate as NativeTristate from .module import Module as CompatModule -__all__ = ["TSTriple", "READ_FIRST", "WRITE_FIRST", "NO_CHANGE", "_MemoryPort", "Memory"] +__all__ = ["TSTriple", "Instance", "Memory", "READ_FIRST", "WRITE_FIRST", "NO_CHANGE"] class CompatTSTriple(NativeTSTriple):