Emergency Self-Construct

Results 879 comments of Emergency Self-Construct

Maybe an alternative syntax could be used, with a special symbol, e.g. `|`: ``` $ command Regular output! |Error message! ``` I am guessing here, but the separation and redirection...

@AGWA are you still around?

@kc611 thank you for opening this PR, your efforts to improve Numba are appreciated. It's good to see the `axis` support on this. I just looked at the error messages...

Using the review cheklist from https://github.com/numba/numba/pull/8209/files I have checked that: * [x] There is no other Pull Request proposing the same change. (If there is please highlight this and one...

> Testing at `numba_smoketest_cpu_nprgen_30` This was all green.

@njriasan @guilhermeleobas you could use the `numba.typed.List` as showen below: ```python import numba @numba.njit def f(): d = {} for i in range(10): d[str(i)] = numba.typed.List((1,)) return d print(f()) ```

I do hope that at some point in the not too distant future `[]` in JIT-ed code will result in a typed List, instead of a reflected one.