On Python 3.9–3.10, the tuple[...] type is an instance of types.GenericAlias. Warp's type system doesn't seem to handle those correctly and instead tries to treat ...
Even though the NFL season just kicked off, basketball is coming. Thursday marks three weeks until the NBA preseason opens with the New York Knicks and Philadelphia 76ers squaring off in Abu Dhabi.
In []: %timeit (*(x**2 for x in range(1000)),) # (A) 47.2 μs ± 1.18 μs per loop (mean ± std. dev. of 7 runs, 10,000 loops each) In []: %timeit tuple(x**2 for x in range(1000)) # most idiomatic 45.4 μs ...