TypeView#

class einspect.views.view_type.TypeView(obj, ref=True)#
alloc_mode(mode)#

Context manager to temporarily set the type’s allocation mode.

alloc_slot(*slot, subclasses=True)#

Allocate slot method structs. Defaults to all the following: :rtype: None

  • tp_as_async (PyAsyncMethods)

  • tp_as_number (PyNumberMethods)

  • tp_as_mapping (PyMappingMethods)

  • tp_as_sequence (PySequenceMethods)

as_mutable()#

Context manager to temporarily set the type as mutable.

Return type:

Generator[Self, None, None]

drop()#

Drop all references to the base object.

Return type:

None

Notes

This is useful for when you want to drop the reference to the base object, but still want to access the view.

gc_is_tracked()#

Returns True if the object is tracked by the GC.

Return type:

bool

gc_may_be_tracked()#

Return True if the object may be tracked by the GC in the future, or already is.

Return type:

bool

info(types=True, arr_max=64)#

Return a formatted info string of the view struct.

Parameters:
  • types (bool) – If True, include types as annotations.

  • arr_max (Optional[int]) – Maximum length of Array elements to display.

Return type:

str

Returns:

A formatted info string of the view struct.

is_gc()#

Returns True if the object implements the Garbage Collector protocol.

If True, a PyGC_HEAD struct will precede the object struct in memory.

Return type:

bool

move_from(other)#

Moves data at other Viewable to this View.

move_to(dst, start=8)#

Copy the object to another view’s location.

Parameters:
  • dst (View) – The destination view.

  • start (int) – The start offset in bytes to copy from. The default is pointer size to skip ob_refcnt

Return type:

None

restore(*names)#

Restore named attribute(s) on type.

Parameters:

*names (Union[str, Callable]) – Optional name(s) of attribute(s) to restore. Can be str or callable with __name__. If empty, restore all attributes.

Return type:

None

swap(other)#

Swaps data at other Viewable with this View.

unsafe()#

Context manager to enter an unsafe context.

Return type:

ContextManager[Self]

Examples

>>> from einspect import view
>>> v = view(100)
>>> with v.unsafe():
>>>     v.size += 1
>>> with view(100).unsafe() as v:
>>>     v.size -= 1
property address: int#

Memory address of the object.

property base: _T#

Returns the base object of the view.

Requires either the View to be created with (ref=True) or the object to support weakrefs.

Notes

If neither ref nor weakref are available, and called within an unsafe context, returns an object via memory address cast. The result of the cast is undefined behavior, and could cause a segmentation fault.

Returns:

The base object of the view.

Raises:
  • AttributeError – If ref=False and base does not support weakrefs.

  • MovedError – If weak-ref of base is garbage collected.

property immutable: bool#

Return True if the type is immutable.

property instance_dict: dict[str, Any] | None#

Instance Dictionary of the object.

property mem_allocated: int#

Memory allocated for the object in bytes.

property mem_size: int#

Memory size of the object in bytes.

property ref_count: int#

Reference count of the object.

property size: int#

Size (ob_size) of the PyVarObject.

property tp_flags: TpFlags#

Return the type’s flags.

property tp_name: str#

Return the type’s name.

property type: Type[_T]#

Type of the object.

@einspect.views.view_type.impl(*cls, alloc=None, detach=False)#

Decorator for implementing methods on types.

Supports methods decorated with property, classmethod, or staticmethod.

Parameters:
  • cls (Union[Type[TypeVar(_T)], type, ]) – The type(s) or Union(s) to implement the method on.

  • alloc (Optional[Literal['mapping', 'sequence', 'all']]) – The PyMethod allocation mode. Default of None will automatically allocate PyMethod structs as needed. If “sequence” or “mapping”, will prefer the respective PySequenceMethods or PyMappingMethods in cases of ambiguious slot names. (e.g. “__getitem__” or “__len__”). If “all”, will allocate all PyMethod structs.

  • detach (bool) – If True, will remove the implemented method from the type when the decorated function is garbage collected. This will hold a reference to the type(s) for the lifetime of the function. Requires function to support weakrefs.

Return type:

Callable[[TypeVar(_Fn, bound= Callable)], TypeVar(_Fn, bound= Callable)]

Returns:

The original function after it has been implemented on the types, allows chaining of multiple impl decorators.

Examples

>>> @impl(int)
... def is_even(self):
...     return self % 2 == 0
>>> @impl(int | float)  # or @impl(int, float)
... @classmethod
... def try_from(cls, value):
...     try:
...         return cls(value)
...     except ValueError:
...         return None