Files
lspower/.venv/Lib/site-packages/numpy/tests/test__all__.py
2026-05-14 08:38:16 +02:00

11 lines
222 B
Python

import collections
import numpy as np
def test_no_duplicates_in_np__all__():
# Regression test for gh-10198.
dups = {k: v for k, v in collections.Counter(np.__all__).items() if v > 1}
assert len(dups) == 0