@param schema: A schema object. @type schema: L{xsd.schema.Schema}
(self, schema)
| 232 | """ |
| 233 | |
| 234 | def __init__(self, schema): |
| 235 | """ |
| 236 | @param schema: A schema object. |
| 237 | @type schema: L{xsd.schema.Schema} |
| 238 | """ |
| 239 | Resolver.__init__(self, schema) |
| 240 | self.stack = Stack() |
| 241 | |
| 242 | def reset(self): |
| 243 | """ |