我正在尝试为我的类编写一个正确的方法,以便在使用库from_yaml
加载 YAML 文件时能够反序列化回它。ruamel.yaml
假设在我的to_yaml
类方法中,我返回如下内容:
@classmethod
def to_yaml(cls, dumper, data):
dict_representation = {
'foo': data.foo,
'bar': data.bar
}
return dumper.represent_mapping(cls.yaml_tag, dict_representation)
现在在反序列化方法中
@classmethod
def from_yaml(cls, constructor, node):
dict_representation = constructor.construct_mapping(node, deep=True)
有了这个,我得到TypeError
:
---------------------------------------------------------------------------
TypeError Traceback (most recent call last)
<ipython-input-6-782b00e19bec> in <module>()
----> 1 dict_representation = yaml.constructor.construct_mapping(node, deep=True)
/home/**/.envs/myenv/local/lib/python2.7/site-packages/ruamel/yaml/constructor.pyc in construct_mapping(self, node, maptyp, deep)
1186 "found unhashable key", key_node.start_mark)
1187 value = self.construct_object(value_node, deep=deep)
-> 1188 self.check_mapping_key(node, key_node, maptyp, key, value)
1189
1190 if key_node.comment and len(key_node.comment) > 4 and \
/home/**/.envs/myenv/local/lib/python2.7/site-packages/ruamel/yaml/constructor.pyc in check_mapping_key(self, node, key_node, mapping, key, value)
241 def check_mapping_key(self, node, key_node, mapping, key, value):
242 # type: (Any, Any, Any, Any, Any) -> None
--> 243 if key in mapping:
244 if not self.allow_duplicate_keys:
245 args = [
TypeError: argument of type 'NoneType' is not iterable
事实上,在交互式 shell 中尝试更凭经验做到这一点:
import ruamel.yaml
yaml = ruamel.yaml.YAML()
dd = {'foo': 'foo'}
node = yaml.representer.represent_mapping('!dd', dd)
dict_representation = yaml.constructor.construct_mapping(node)
引发相同的异常。我在这里想念什么?