Objects

Objects that exist while Python runs but have no node of their own, so astroid cannot represent them with the nodes it built from the source.

astroid.objects.FrozenSet(lineno, ...)

Class representing a FrozenSet composite node.

astroid.objects.Super(mro_pointer, mro_type, ...)

Proxy class over a super call.

astroid.objects.DictInstance(proxied)

Special kind of instances for dictionaries.

astroid.objects.DictItems([proxied])

astroid.objects.DictKeys([proxied])

astroid.objects.DictValues([proxied])

astroid.objects.PartialFunction([call, ...])

A class representing partial function obtained via functools.partial.

astroid.objects.Property(function[, name, ...])

Class representing a Python property.