Files
aufbau2csv/venv/lib/python3.12/site-packages/numpy/tests/test__all__.py
Sven Riwoldt f7f8c52455 init
2024-10-19 12:31:37 +02: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