Example #1
0
File: yaml.py Project: i386x/abcdoc
    def construct_yaml_float(self, node):
        """
        """

        data = YamlFloat(SafeConstructor.construct_yaml_float(self, node))
        mark = node.start_mark
        if self.__filename is not None:
            mark.name = self.__filename
        data.mark = mark
        return data
 def construct_yaml_float(self, node):
     obj = SafeConstructor.construct_yaml_float(self, node)
     return self._holder(obj, node)
 def construct_yaml_float(self, node):
     obj = SafeConstructor.construct_yaml_float(self, node)
     return self._holder(obj, node)