3
# Copyright (C) 2012 Canonical Ltd.
5
# Author: Scott Moser <scott.moser@canonical.com>
7
# This program is free software: you can redistribute it and/or modify
8
# it under the terms of the GNU General Public License version 3, as
9
# published by the Free Software Foundation.
11
# This program is distributed in the hope that it will be useful,
12
# but WITHOUT ANY WARRANTY; without even the implied warranty of
13
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14
# GNU General Public License for more details.
16
# You should have received a copy of the GNU General Public License
17
# along with this program. If not, see <http://www.gnu.org/licenses/>.
22
class _CustomSafeLoader(yaml.SafeLoader):
23
def construct_python_unicode(self, node):
24
return self.construct_scalar(node)
26
_CustomSafeLoader.add_constructor(
27
u'tag:yaml.org,2002:python/unicode',
28
_CustomSafeLoader.construct_python_unicode)
32
return(yaml.load(blob, Loader=_CustomSafeLoader))