| 1972 | |
| 1973 | |
| 1974 | class UnknownObject(HeapObject): |
| 1975 | |
| 1976 | def __init__(self, heap, address): |
| 1977 | HeapObject.__init__(self, heap, None, None) |
| 1978 | self.address = address |
| 1979 | |
| 1980 | def GetChars(self): |
| 1981 | return "<???>" |
| 1982 | |
| 1983 | def __str__(self): |
| 1984 | return "<0x%x>" % self.address |
| 1985 | |
| 1986 | |
| 1987 | class KnownObject(HeapObject): |