I'd be happy with just an optimized strict subset of python that uses type annotations to compile performance critical functions like cython. Mypyc sounds like an attempt at that but doesn't seem to be constraining the language enough to allow it to shed the dynamic nature of the language. Another similar effort was EPython, but it doesn't look like anyone is working on it.

I guess Numba would be the closest thing to this at the moment.

Cinder (https://github.com/facebookincubator/cinder) has Static Python bundled with it, which is pretty useful for replacing Cython.

[disclaimer: I work on Cinder]