(self, display_id=None)
| 322 | """ |
| 323 | |
| 324 | def __init__(self, display_id=None): |
| 325 | if display_id is None: |
| 326 | display_id = _new_id() |
| 327 | self.display_id = display_id |
| 328 | |
| 329 | def __repr__(self): |
| 330 | return "<%s display_id=%s>" % (self.__class__.__name__, self.display_id) |