Create a frame and push the specified object. @param sx: A schema object to push. @type sx: L{SchemaObject}
(self, sx)
| 545 | self.push(sx) |
| 546 | |
| 547 | def push(self, sx): |
| 548 | """ |
| 549 | Create a frame and push the specified object. |
| 550 | @param sx: A schema object to push. |
| 551 | @type sx: L{SchemaObject} |
| 552 | """ |
| 553 | self.stack.append(Iter.Frame(sx)) |
| 554 | |
| 555 | def pop(self): |
| 556 | """ |
no test coverage detected