Exemplo n.º 1
0
Arquivo: yaml.py Projeto: i386x/abcdoc
    def construct_yaml_int(self, node):
        """
        """

        data = YamlInt(SafeConstructor.construct_yaml_int(self, node))
        mark = node.start_mark
        if self.__filename is not None:
            mark.name = self.__filename
        data.mark = mark
        return data
 def construct_yaml_int(self, node):
     obj = SafeConstructor.construct_yaml_int(self, node)
     return self._holder(obj, node)
Exemplo n.º 3
0
 def construct_yaml_int(self, node):
     obj = SafeConstructor.construct_yaml_int(self, node)
     return self._holder(obj, node)