Return the input string centered in a 'marquee'.
(self,txt='',width=78,mark='*')
| 506 | # These methods are meant to be overridden by subclasses who may wish to |
| 507 | # customize the behavior of of their demos. |
| 508 | def marquee(self,txt='',width=78,mark='*'): |
| 509 | """Return the input string centered in a 'marquee'.""" |
| 510 | return marquee(txt,width,mark) |
| 511 | |
| 512 | def pre_cmd(self): |
| 513 | """Method called before executing each block.""" |