get whether or not to skip the specified child
(self, child, ancestry)
| 101 | setattr(data, name, value) |
| 102 | |
| 103 | def skip_child(self, child, ancestry): |
| 104 | """ get whether or not to skip the specified child """ |
| 105 | if child.any(): |
| 106 | return True |
| 107 | return any(x.choice() for x in ancestry) |
| 108 | |
| 109 | def ordering(self, type): |
| 110 | """ get the ordering """ |