Participer au site avec un Tip
Rechercher
 

Améliorations / Corrections

Vous avez des améliorations (ou des corrections) à proposer pour ce document : je vous remerçie par avance de m'en faire part, cela m'aide à améliorer le site.

Emplacement :

Description des améliorations :

Module « collections » Python 3.11.3

Classe « ChainMap »

Informations générales

Héritage

builtins.object
    Container
builtins.object
    Iterable
builtins.object
    Sized
        Collection
            Mapping
                MutableMapping
                    ChainMap

Définition

class ChainMap(MutableMapping):

help(ChainMap)

 A ChainMap groups multiple dicts (or other mappings) together
    to create a single, updateable view.

    The underlying mappings are stored in a list.  That list is public and can
    be accessed or updated using the *maps* attribute.  There is no other
    state.

    Lookups search the underlying mappings successively until a key is found.
    In contrast, writes, updates, and deletions only operate on the first
    mapping.

    

Constructeur(s)

Signature du constructeur Description
__init__(self, *maps) Initialize a ChainMap by setting *maps* to the given mappings. [extrait de __init__.__doc__]

Liste des propriétés

Nom de la propriétéDescription
parentsNew ChainMap from maps[1:]. [extrait de __doc__]

Liste des opérateurs

Signature de l'opérateur Description
__contains__(self, key)
__delitem__(self, key)
__getitem__(self, key)
__ior__(self, other)
__or__(self, other)
__ror__(self, other)
__setitem__(self, key, value)

Opérateurs hérités de la classe Mapping

__eq__

Opérateurs hérités de la classe object

__ge__, __gt__, __le__, __lt__, __ne__

Liste des méthodes

Toutes les méthodes Méthodes d'instance Méthodes statiques Méthodes dépréciées
Signature de la méthodeDescription
__bool__(self)
__copy__(self) New ChainMap or subclass with a new copy of maps[0] and refs to maps[1:] [extrait de copy.__doc__]
__iter__(self)
__len__(self)
__missing__(self, key)
__repr__(self)
clear(self) Clear maps[0], leaving maps[1:] intact. [extrait de clear.__doc__]
copy(self) New ChainMap or subclass with a new copy of maps[0] and refs to maps[1:] [extrait de copy.__doc__]
fromkeys(iterable, *args) Create a ChainMap with a single dict created from the iterable. [extrait de fromkeys.__doc__]
get(self, key, default=None)
new_child(self, m=None, **kwargs) New ChainMap with a new map followed by all previous maps. [extrait de new_child.__doc__]
pop(self, key, *args) Remove *key* from maps[0] and return its value. Raise KeyError if *key* not in maps[0]. [extrait de pop.__doc__]
popitem(self) Remove and return an item pair from maps[0]. Raise KeyError is maps[0] is empty. [extrait de popitem.__doc__]

Méthodes héritées de la classe MutableMapping

__init_subclass__, setdefault, update

Méthodes héritées de la classe Mapping

items, keys, values

Méthodes héritées de la classe Collection

__subclasshook__

Méthodes héritées de la classe object

__delattr__, __dir__, __format__, __getattribute__, __getstate__, __hash__, __reduce__, __reduce_ex__, __setattr__, __sizeof__, __str__