Implement RFC 19: Remove amaranth.lib.scheduler

This commit is contained in:
Catherine 2023-09-01 00:27:57 +00:00
parent b172d63160
commit cd4ea96bd1
3 changed files with 15 additions and 1 deletions

View file

@ -1,11 +1,14 @@
# amaranth: UnusedElaboratable=no
import unittest
import warnings
from amaranth.hdl import *
from amaranth.asserts import *
from amaranth.sim import *
from amaranth.lib.scheduler import *
with warnings.catch_warnings():
warnings.filterwarnings(action="ignore", category=DeprecationWarning)
from amaranth.lib.scheduler import *
from .utils import *