diff options
| author | J08nY | 2023-02-12 23:02:54 +0100 |
|---|---|---|
| committer | J08nY | 2023-02-12 23:02:54 +0100 |
| commit | f11268d7cb7f8749312c3d85f37451ebf84649ae (patch) | |
| tree | 016a77ccd504dec885711c0de3d93d4a9c456954 /test | |
| parent | a08a052db35e9b940b33b57750c5addf0f66facd (diff) | |
| download | pyecsca-f11268d7cb7f8749312c3d85f37451ebf84649ae.tar.gz pyecsca-f11268d7cb7f8749312c3d85f37451ebf84649ae.tar.zst pyecsca-f11268d7cb7f8749312c3d85f37451ebf84649ae.zip | |
Add __slots__ to Mods.
Diffstat (limited to 'test')
| -rw-r--r-- | test/ec/test_mod.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/test/ec/test_mod.py b/test/ec/test_mod.py index 7802e95..62022b0 100644 --- a/test/ec/test_mod.py +++ b/test/ec/test_mod.py @@ -176,6 +176,9 @@ class ModTests(TestCase): "__hash__", "__abstractmethods__", "_abc_impl", + "__slots__", + "x", + "n" ): continue args = [5 for _ in range(meth.__code__.co_argcount - 1)] |
