Sam Steingold

Results 54 comments of Sam Steingold

``` >>> scipy.__version__ '1.5.2' $ pylint --version pylint 2.6.0 astroid 2.4.2 Python 3.8.5 (default, Jul 21 2020, 10:48:26) [Clang 11.0.3 (clang-1103.0.32.62)] ```

Thanks, I use ``` z = sp.erfinv(p) * np.sqrt(2) # https://github.com/PyCQA/pylint/issues/3744 pylint: disable=no-member ``` instead.

``` pylint 3.3.8 astroid 3.3.11 Python 3.13.3 (main, Aug 14 2025, 11:53:40) [GCC 14.2.0] ``` `pyproject.toml`: ``` [tool.pylint.'MESSAGES CONTROL'] extension-pkg-allow-list = [ "scipy.special", # https://github.com/PyCQA/pylint/issues/3744 ] ``` does not help

I use too many [`scipy.special`](https://docs.scipy.org/doc/scipy/reference/special.html) functions to mark them all, and [whitelisting](https://github.com/pylint-dev/pylint/issues/3744#issuecomment-3315476383) does not work, even with ``` pylint 4.0.2 astroid 4.0.1 Python 3.13.3 (main, Aug 14 2025, 11:53:40) [GCC...