Is there a __dunder__ method corresponding to |= (pipe equal/update) for dicts in python 3.9?

后端 未结 3 1385
故里飘歌
故里飘歌 2021-01-18 18:43

In python 3.9, dictionaries gained combine | and update |= operators. Is there a dunder/magic method which will enable this to be used for other cl

3条回答
  •  清酒与你
    2021-01-18 19:24

    No need to dig through the source. It's clearly documented as __or__ and __ior__. https://docs.python.org/3/reference/datamodel.html is the relevant documentation.

提交回复
热议问题