MCPcopy Create free account
hub / github.com/Distrotech/reportlab / start_table

Method start_table

tools/pythonpoint/stdparser.py:500–512  ·  view source on GitHub ↗
(self, args)

Source from the content-addressed store, hash-verified

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):

Callers

nothing calls this directly

Calls 3

pack_slideMethod · 0.95
cevalMethod · 0.95
has_keyMethod · 0.45

Tested by

no test coverage detected