Files
mnote/wolai-backend/.venv312/Lib/site-packages/numpy/tests/test__all__.py
T

10 lines
221 B
Python
Raw Normal View History

2025-12-08 19:56:24 +08:00
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