Files
zenml/venv/lib/python3.9/site-packages/numpy/tests/test__all__.py
Christian Mantha 2ca0b9ef7c star
2026-03-02 19:10:52 -05:00

10 lines
221 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