(self, args)
| 498 | |
| 499 | |
| 500 | def start_table(self, args): |
| 501 | self.pack_slide('table',args) |
| 502 | self._curTable = pythonpoint.PPTable() |
| 503 | self._curTable.widths = self.ceval('table',args,'widths') |
| 504 | self._curTable.heights = self.ceval('table',args,'heights') |
| 505 | #these may contain escapes like tabs - handle with |
| 506 | #a bit more care. |
| 507 | if args.has_key('fieldDelim'): |
| 508 | self._curTable.fieldDelim = eval('"' + args['fieldDelim'] + '"') |
| 509 | if args.has_key('rowDelim'): |
| 510 | self._curTable.rowDelim = eval('"' + args['rowDelim'] + '"') |
| 511 | if args.has_key('style'): |
| 512 | self._curTable.style = args['style'] |
| 513 | |
| 514 | |
| 515 | def end_table(self): |
nothing calls this directly
no test coverage detected