MCPcopy Create free account
hub / github.com/PyTables/PyTables / __setitem__

Method __setitem__

tables/attributeset.py:603–605  ·  view source on GitHub ↗

Implement a dictionary like interface for `__setattr__()`.

(self, name: str, value: Any)

Source from the content-addressed store, hash-verified

601 )
602
603 def __setitem__(self, name: str, value: Any) -> None:
604 """Implement a dictionary like interface for `__setattr__()`."""
605 self.__setattr__(name, value)
606
607 def __delitem__(self, name: str) -> None:
608 """Implement a dictionary like interface for `__delattr__()`."""

Callers

nothing calls this directly

Calls 1

__setattr__Method · 0.95

Tested by

no test coverage detected