(self, display_id=None)
| 359 | """ |
| 360 | |
| 361 | def __init__(self, display_id=None): |
| 362 | if display_id is None: |
| 363 | display_id = _new_id() |
| 364 | self.display_id = display_id |
| 365 | |
| 366 | def __repr__(self): |
| 367 | return "<%s display_id=%s>" % (self.__class__.__name__, self.display_id) |