Package comp :: Module constants
[hide private]
[frames] | no frames]

Source Code for Module comp.constants

 1  #!/usr/bin/python 
 2  # -*- coding: latin-1 -*- 
 3   
 4  """  
 5  This is a copy of the file constants.py in the root directory of barebones, used only for testing the composition modules as main. 
 6   
 7  @author: Øyvind Brandtsegg 
 8  @contact: obrandts@gmail.com 
 9  @license: GPL 
10  """ 
11   
12  # composition module constants 
13  START = 1 
14  CONTINUE = 0 
15  STOP = -1 
16