class documentation

class _Widget: (source)

View In Hierarchy

Implementation of Plating.widgeted. This is a callable descriptor that records the instance to which its wrapped function is bound, if any. Its widget method then passes that instance or None and the result of invoking the function (or now bound method) to the creating Plating instance's Plating._elementify to construct a PlatedElement.

Method __call__ Undocumented
Method __get__ Undocumented
Method __getattr__ Undocumented
Method widget Construct a PlatedElement the rendering of this widget.
Instance Variable _function Undocumented
Instance Variable _instance Undocumented
Instance Variable _plating Undocumented
def __call__(self, *args, **kwargs): (source)

Undocumented

def __get__(self, instance, owner=None): (source)

Undocumented

def __getattr__(self, attr): (source)

Undocumented

def widget(self, *args, **kwargs): (source)

Construct a PlatedElement the rendering of this widget.

_function: Callable[..., Any] = (source)

Undocumented

_instance: object = (source)

Undocumented

_plating: Plating = (source)

Undocumented