Stubtest crashes if an `@overload` is decorated
Nadie ha tomado este issue todavía.
- Lenguaje dominante
- Python
- Estrellas
- 20.6k
- Forks
- 3.3k
- Métricas de merge de PR
- Métricas de PR pendientes
Descripción
Crash Report
I tried running stubtest on the numpy codebase using the compiled mypy 1.18.2 version + the patch from #20063. This triggered an assertion failure in hypothesis.extra.numpy.arrays (huh?). The relevant code contains code like
@overload
@defines_strategy(force_reusable_values=True)
def arrays(
# --snip--
which I believe is what is triggering this asserion to fail. See HypothesisWorks/hypothesis#4564 for the relevant code.
Traceback
Traceback (most recent call last):
File "/home/joren/Workspace/numpy/.venv/bin/stubtest", line 10, in <module>
sys.exit(main())
~~~~^^
File "/home/joren/Workspace/numpy/.venv/lib/python3.14/site-packages/mypy/stubtest.py", line 2448, in main
return test_stubs(parse_options(sys.argv[1:]))
File "/home/joren/Workspace/numpy/.venv/lib/python3.14/site-packages/mypy/stubtest.py", line 2296, in test_stubs
for error in test_module(module):
~~~~~~~~~~~^^^^^^^^
File "/home/joren/Workspace/numpy/.venv/lib/python3.14/site-packages/mypy/stubtest.py", line 257, in test_module
yield from verify(stub, runtime, [module_name])
File "/home/joren/Workspace/numpy/.venv/lib/python3.14/site-packages/mypy/stubtest.py", line 436, in verify_mypyfile
yield from verify(stub_entry, runtime_entry, object_path + [entry])
File "/home/joren/Workspace/numpy/.venv/lib/python3.14/site-packages/mypy/stubtest.py", line 1347, in verify_overloadedfuncdef
stub_sig = Signature.from_overloadedfuncdef(stub)
File "/home/joren/Workspace/numpy/.venv/lib/python3.14/site-packages/mypy/stubtest.py", line 971, in from_overloadedfuncdef
assert func is not None, f"Failed to resolve decorated overload of {stub.fullname!r}"
^^^^^^^^^^^^^^^^
AssertionError: Failed to resolve decorated overload of 'hypothesis.extra.numpy.arrays'
To Reproduce
- clone https://github.com/numpy/numpy
uv venv .venvsource .venv/bin/activateuv pip install -r requirements/build_requirements.txt -r requirements/test_requirements.txtspin build- create
mypy.ini:[mypy] ignore_errors = True - create
allowlist.txt:numpy\._typing.* numpy\.typing\.mypy_plugin numpy\.conftest.* numpy\.random\._generator\.__test__ numpy(\.\w+)?\.tests.* numpy\._core\.cversions numpy\.f2py\.__main__ numpy\.distutils.* numpy\.f2py\._backends\._distutils numpy\._build_utils.* numpy\._pyinstaller.* stubtest --mypy-config-file=mypy.ini --allowlist=allowlist.txt --concise --tb numpy
Your Environment
- Mypy version used: 1.18.2 (compiled: yes)
- Mypy command-line flags: see above
- Mypy configuration options from
mypy.ini(and other config files): see above - Python version used: 3.14.0
- Operating system and version: Ubuntu 22.04
BTW, adding hypothesis.* to the allowlist doesn't seem to help.
Guía de contribución
Primeros pasos
- Lee el issue completo y luego la guía de contribución del proyecto.
- Comenta en el issue que vas a ocuparte — evita que dos personas hagan lo mismo.
- Haz un fork del repositorio y trabaja en una rama.
- Abre un pull request que haga referencia al número del issue.
Línea de trabajo
Comienza en mypy/stubtest.py, en Signature.from_overloadedfuncdef y verify_overloadedfuncdef, y sigue el traceback para rastrear cómo se resuelven las funciones @overload decoradas. Reproduce el problema con la configuración de NumPy y el comando stubtest proporcionados; se considera terminado cuando este overload decorado ya no provoca el fallo de aserción.
Escrito por el modelo de indexación a partir del texto del issue.
Evaluación
- Stack tecnológico
- python
- Área
- testing-qa, tooling
- Tipo de issue
- Error
- Dificultad
- 3/5
- Tiempo estimado
- 1-2 días
- Estado de actividad
- Estancado
- Claridad
- Bastante claro
- Aptitud para principiantes
- 52/100