I would like to see if there is any way of requiring a minimal python version.
I have several python modules that are requiring Python 2.6 due to the new exception handl
Rather than indexing you could always do this,
import platform if platform.python_version() not in ('2.6.6'): raise RuntimeError('Not right version')