From: Luke Kenneth Casson Leighton Date: Mon, 22 Apr 2019 10:27:50 +0000 (+0100) Subject: LFSR2.pyi, type is set not frozenset, exponents returns list X-Git-Tag: div_pipeline~2171 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=d7de4f1e77cf008cf3cd786415da3d7ab1828c9f;p=soc.git LFSR2.pyi, type is set not frozenset, exponents returns list --- diff --git a/TLB/src/LFSR2.pyi b/TLB/src/LFSR2.pyi index c37adc44..894ce23f 100644 --- a/TLB/src/LFSR2.pyi +++ b/TLB/src/LFSR2.pyi @@ -6,11 +6,11 @@ from typing_extensions import final @final -class LFSRPolynomial(frozenset): +class LFSRPolynomial(set): def __init__(self, exponents: Iterable[int] = ()): def elements() -> Iterable[int]: ... @property - def exponents(self) -> frozenset[int]: ... + def exponents(self) -> list[int]: ... def __str__(self) -> str: ... def __repr__(self) -> str: ...