compat.fhdl: reexport Array.

This commit is contained in:
whitequark 2018-12-16 10:38:25 +00:00
parent d4e8d3e95a
commit 286a8009c8
3 changed files with 5 additions and 8 deletions

View file

@ -713,7 +713,7 @@ class Array(MutableSequence):
master.dat_r.eq(buses[sel].dat_r),
]
"""
def __init__(self, iterable):
def __init__(self, iterable=()):
self._inner = list(iterable)
self._proxy_at = None
self._mutable = True