section of routines in spydr_pyk.i

functions in spydr_pyk.i -

 
 
 
pyk_debug


             pyk_debug = 1  
         or pyk_debug = []  
 
    
    If pyk_debug is non-nil and non-zero, print message traffic to and  
    from wish.  This is useful for debugging py-yorick interaction.  
    
SEE ALSO: spydr_pyk  
 
 
 
pyk_set


             pyk_set var1 val1 var2 val2 ...  
 
    
    This function is designed to be invoked by the python front-end;  
    it is not useful for yorick programs.  
    
    Equivalent to  
      var1=val1; var2=val2; ...  
    Handles at most 8 var/val pairs.  
    As a special case, if given an odd number of arguments, pyk_set  
    sets the final var to [], e.g.-  
      pyk_set var1 12.34 var2  
    is equivalent to  
      var1=12.34; var2=[];  
    
SEE ALSO: pyk  
 
 
 
spydr_pyk


             spydr_pyk, py_command  
         or value = spydr_pyk(py_command)  
 
    
    send PY_COMMAND to python front-end.  If the wish front-end is not  
    already running, spydr_pyk starts it.  
    
SEE ALSO: pyk_debug