"""Heap size analysis"""

from __future__ import annotations

def info(object: object) -> int:
    """Prints memory debugging info for the given object and returns the
    estimated size."""
    ...
