Hide keyboard shortcuts

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

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

 

__version__ = '0.1.8' # METADATA_RESET:__version__ = '<<version>>' 

 

""" 

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. 

 

------ 

"""