Coverage for rocketisp\_version.py : 100%

Hot-keys on this page
r m x p toggle line displays
j k next/prev highlighted chunk
0 (zero) top of page
1 (one) first highlighted chunk
The ``_version.py`` file can be executed with execfile to create a local variable __version__::
execfile('_version.py') # python 2.x exec(open('_version.py').read()) # python 3.x
creates local __version__ variable.
Used to set version info throughout the project.
------ """ |