home *** CD-ROM | disk | FTP | other *** search
- # Source Generated with Decompyle++
- # File: in.pyc (Python 2.6)
-
-
- class PropertyValue(object):
-
- def __init__(self, property, objects):
- self.property = property
- self.objects = objects
-
-
- def __repr__(self):
- return '%s(%s)' % (self.property, self.objects)
-
-
-
- class ParsedConstrainedTriples(object):
- '''
- A list of Resources associated with a constraint
- '''
-
- def __init__(self, triples, constraint):
- self.triples = triples
- self.constraint = constraint
-
-
- def __repr__(self):
- if not self.constraint or ' %s' % self.constraint:
- pass
- return '%s%s' % (self.triples, '')
-
-
-