| Home | Trees | Indices | Help | 
 | 
|---|
|  | 
         object --+    
                  |    
table.Table.RowType --+
                      |
                     ProcessParams
Example:
>>> x = ProcessParams() >>> x.pyvalue = u"test" >>> x.type u'lstring' >>> x.value u'test' >>> x.pyvalue u'test' >>> x.pyvalue = 6. >>> x.type u'real_8' >>> x.value u'6' >>> x.pyvalue 6.0 >>> x.pyvalue = None >>> print(x.type) None >>> print(x.value) None >>> print(x.pyvalue) None >>> x.pyvalue = True >>> x.type u'int_4s' >>> x.value u'1' >>> x.pyvalue 1
| 
 | |||
| Inherited from  Inherited from  | |||
| 
 | |||
| param | |||
| process_id | |||
| program | |||
| pyvalue | |||
| type | |||
| value | |||
| Inherited from  | |||
| 
 | |||
| pyvalue
 | 
| Home | Trees | Indices | Help | 
 | 
|---|
| Generated by Epydoc 3.0.1 on Tue Dec 12 00:34:19 2017 | http://epydoc.sourceforge.net |