Peter Müller
Peter Müller
`a = pow(2, 3)` throws an **error: name 'pow' is not defined**, even though `pow` is a Python built-in.
The data type `frozenset` seems to be missing in codon. Is there a good substitute? -- Peter Mueller
The code ``` import codon @codon.jit def f(a: List[int]): return len(a) ``` raises a `NameError: name 'List' is not defined`, while the same function definition works fine in a pure...
The CPython implementation of `itertools.product()` from the Python Standard Library returns an iterator of tuples, whereas the codon version returns lists. Is this on purpose? I think it would be...