Siu Kwan Lam
Siu Kwan Lam
Python `ast.Name` should define the `ctx` attribute
SCFG should retain source location of the original AST. It's currently set to line 0 for many new nodes: e.g https://github.com/numba/numba-rvsdg/blob/77a957a232f70d1868cdcaec10adb324571b5c1c/numba_rvsdg/core/datastructures/ast_transforms.py#L690
Plan for RVSDG is to be developed into a separate pipeline.
based on https://github.com/numba/numba/pull/9682
## Feature request From https://github.com/numba/numba/issues/9753#issuecomment-2422988754, Numba needs to adopt the C-API for monitoring. Implementation hint at: - https://docs.python.org/3.13/c-api/monitoring.html#monitoring-c-api - https://github.com/python/cpython/issues/111997#issuecomment-1903698585 - https://github.com/cython/cython/pull/6144
On windows, [HEAD](https://github.com/numba/llvmlite/commit/8cc8944f6234ca2eee0ecc817b834e5a7a27d2c5) is suffering from a segfault problem when running the testsuite. The problem is associated with the use of `-GL` flag on MSVC. The flag enables whole-program optimization....
# Documentation In Python 3.13, `PyObject_HasAttr` doc says: > Exceptions that occur when this calls `__getattr__()` and `__getattribute__()` methods are silently ignored. But its exception behavior after https://github.com/python/cpython/pull/106674 is to...
Fix https://github.com/numba/numba/issues/9859 Changes implementation to setup a mock Tracer object.
## Reporting a bug - [x] I have tried using the latest released version of Numba (most recent is visible in the release notes (https://numba.readthedocs.io/en/stable/release-notes-overview.html). - [x] I have included...
Getattr that alias array is being DCE'ed by the IR inliner; e.g: ```python for i in range(len(wa.buffer)): wa.buffer[i] = 2 * wa.buffer[i] + 1 ``` See parent issue for code...