def __init__(self, *maps):
'''Initialize a ChainMap by setting *maps* to the given mappings.
If no mappings are provided, a single empty dictionary is used.
'''
self.maps = list(maps) or [{}] # always at least one map
singledispatch_helpers.py 文件源码
python
阅读 18
收藏 0
点赞 0
评论 0
评论列表
文章目录