/
githubmirror
/
scikit-learn
Обзор
Документация
Войти
/
githubmirror
/
scikit-learn
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
sklearn/tests/test_init.py
19 строк
500 B
Christian Lorentzen
MNT remove leftover authors (#33240)
09 фев 2026, 04:24
Не верифицирован
09 фев 2026, 04:24
a947690
Код
Авторство
О чём код?
# Authors: The scikit-learn developers # SPDX-License-Identifier: BSD-3-Clause # Basic unittests to test functioning of module's top-level try: from sklearn import * # noqa: F403 _top_import_error = None except Exception as e: _top_import_error = e def test_import_skl(): # Test either above import has failed for some reason # "import *" is discouraged outside of the module level, hence we # rely on setting up the variable above assert _top_import_error is None