(self, *args, stream=None)
| 106 | """ |
| 107 | |
| 108 | def __init__(self, *args, stream=None): |
| 109 | self.stream = stream or sys.stdout |
| 110 | if not len(args): |
| 111 | arg = None |
| 112 | else: |
| 113 | arg = args[0] |
| 114 | args = args[1:] |
| 115 | self.init(arg) |
| 116 | self.add(*args) |
| 117 | |
| 118 | def init(self, arg): |
| 119 | self.all_callees = None # calc only if needed |