_tools: extract most utility methods to a private package.
We don't want to guarantee backwards compatibility for most of them.
This commit is contained in:
parent
a97003d57a
commit
da48c05bdf
22 changed files with 106 additions and 103 deletions
|
|
@ -1,6 +1,6 @@
|
|||
import warnings
|
||||
|
||||
from ...tools import deprecated
|
||||
from ..._tools import deprecated
|
||||
from ...lib.cdc import FFSynchronizer as NativeFFSynchronizer
|
||||
from ...hdl.ast import *
|
||||
from ..fhdl.module import CompatModule
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
from ...tools import deprecated, extend
|
||||
from ..._tools import deprecated, extend
|
||||
from ...lib.fifo import (FIFOInterface as NativeFIFOInterface,
|
||||
SyncFIFO as NativeSyncFIFO, SyncFIFOBuffered as NativeSyncFIFOBuffered,
|
||||
AsyncFIFO as NativeAsyncFIFO, AsyncFIFOBuffered as NativeAsyncFIFOBuffered)
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
from collections import OrderedDict
|
||||
|
||||
from ...tools import _ignore_deprecated
|
||||
from ..._tools import _ignore_deprecated
|
||||
from ...hdl.xfrm import ValueTransformer, StatementTransformer
|
||||
from ...hdl.ast import *
|
||||
from ..fhdl.module import CompatModule, CompatFinalizeError
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
from ...tools import deprecated
|
||||
from ..._tools import deprecated
|
||||
from ...lib.cdc import ResetSynchronizer as NativeResetSynchronizer
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue