(self)
| 1263 | #Generator methods |
| 1264 | @property |
| 1265 | def children(self): |
| 1266 | # return iter() to make the purpose of the method clear |
| 1267 | return iter(self.contents) # XXX This seems to be untested. |
| 1268 | |
| 1269 | @property |
| 1270 | def descendants(self): |
no outgoing calls
no test coverage detected