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

Method start_para

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

Source from the content-addressed store, hash-verified

436 self._curSlide.outlineEntry = None
437
438 def start_para(self, args):
439 self.pack_slide('para', args)
440 self._curPara = pythonpoint.PPPara()
441 self._curPara.style = self._arg('para',args,'style')
442
443 # hack - bullet character if bullet style
444 bt = self._arg('para',args,'bullettext')
445 if bt == '':
446 if self._curPara.style == 'Bullet':
447 bt = '\xe2\x80\xa2' # Symbol Font bullet character, reasonable default
448 elif self._curPara.style == 'Bullet2':
449 bt = '\xe2\x80\xa2' # second-level bullet
450 else:
451 bt = None
452
453 self._curPara.bulletText = bt
454
455 def end_para(self):
456 if self._curFrame:

Callers

nothing calls this directly

Calls 2

pack_slideMethod · 0.95
_argMethod · 0.95

Tested by

no test coverage detected