Debug print/output an object, with optional arguments.
(self, obj, args={})
| 347 | self.outputObjects.append(o) |
| 348 | |
| 349 | def debug(self, obj, args={}): |
| 350 | """ |
| 351 | Debug print/output an object, with optional arguments. |
| 352 | """ |
| 353 | s = ShapeResult() |
| 354 | s.shape = obj |
| 355 | s.options = args |
| 356 | self.debugObjects.append(s) |
| 357 | |
| 358 | def describe_parameter(self, var_data): |
| 359 | """ |
no test coverage detected