(self)
| 124 | class CT_Point2D(ElementBase): |
| 125 | """<a:off>""" |
| 126 | def _init(self): |
| 127 | _required_attribute(self, 'x', default='0') |
| 128 | _required_attribute(self, 'y', default='0') |
| 129 | |
| 130 | # attribute accessors ------------- |
| 131 | x = property(lambda self: self.get('x'), |
nothing calls this directly
no test coverage detected