(self, schema, root)
| 584 | locations = {} |
| 585 | |
| 586 | def __init__(self, schema, root): |
| 587 | SchemaObject.__init__(self, schema, root) |
| 588 | self.location = root.get('schemaLocation') |
| 589 | if self.location is None: |
| 590 | self.location = self.locations.get(self.ns[1]) |
| 591 | self.opened = False |
| 592 | |
| 593 | def open(self, options): |
| 594 | """ |