
Numexpr package evaluates multiple-operator array expressions many times faster than numpy can. it accepts the expression as a string, analyzes it, rewrites it more efficiently, and compiles it to faster python code on the fly. it's the next best thing to writing the expression in c and compiling it with a specialized just-in-time (jit) compiler, i.e. it does not require a compiler at runtime.
this package contains the extension built for the python 3 debug interpreter.