pdk.DataClasses.DataClasses ($Date: 2002/12/04 10:16:54 $)
index
pdk/DataClasses/DataClasses.py

Core pdk data classes.

FOG 10.2002

 
Classes
            
__builtin__.list(__builtin__.object)
Set
 
class Set(__builtin__.list)
     
Purpose:a collection of unique elements

 
  
Method resolution order:
Set
__builtin__.list
__builtin__.object

Methods defined here:
__add__(self, other)
__and__(self, other)
__cmp__(self, other)
__init__(self, value=[])
__or__(self, other)
__radd__ = __add__(self, other)
__repr__(self)
append(self, value)
concat(self, value)
intersect(self, other)
remove(self, value)
union(self, other)

Data and non-method functions defined here:
__dict__ = <dict-proxy object>
__weakref__ = <member '__weakref__' of 'Set' objects>
 
Functions
            
dbtable_to_table(dbTable)
converts the data base table structure dbTable (a DataClasses.DTable instance) into a table (Table) instance.
table_to_dbtable(table)
converts a pdk table (pdk.DataClasses.TableClasses.Table instance) into a data base table structure (pdk.DataClasses.DataBaseStructure.DTable instance).
 
Author
            
$Author: gathmann $