mirror of
https://github.com/gnuradio/gnuradio-companion.git
synced 2025-12-10 17:46:12 -06:00
All of the removed `from __future__ import` were needed in older versions of Python (mostly 2.5.x and below) but later became mandatory in most versions of Python 3 hence are not necessary anymore. More specifically, according to __future__.py[1]: - unicode_literals is part of Python since versions 2.6.0 and 3.0.0; - print_function is part of Python since versions 2.6.0 and 3.0.0; - absolute_import is part of Python since versions 2.5.0 and 3.0.0; - division is part of Python since versions 2.2.0 and 3.0.0; Get rid of those unnecessary imports to slightly clean up the codebase. [1] https://github.com/python/cpython/blob/master/Lib/__future__.py
45 lines
1.1 KiB
Python
45 lines
1.1 KiB
Python
# Copyright 2016 Free Software Foundation, Inc.
|
|
# This file is part of GNU Radio
|
|
#
|
|
# SPDX-License-Identifier: GPL-2.0-or-later
|
|
#
|
|
"""
|
|
Converter for legacy block tree definitions in XML format
|
|
"""
|
|
|
|
|
|
from ..core.io import yaml
|
|
from . import xml
|
|
|
|
|
|
def from_xml(filename):
|
|
"""Load block tree description from xml file"""
|
|
element, version_info = xml.load(filename, 'block_tree.dtd')
|
|
|
|
try:
|
|
data = convert_category_node(element)
|
|
except NameError:
|
|
raise ValueError('Conversion failed', filename)
|
|
|
|
return data
|
|
|
|
|
|
def dump(data, stream):
|
|
out = yaml.dump(data, indent=2)
|
|
prefix = '# auto-generated by grc.converter\n\n'
|
|
stream.write(prefix + out)
|
|
|
|
|
|
def convert_category_node(node):
|
|
"""convert nested <cat> tags to nested lists dicts"""
|
|
assert node.tag == 'cat'
|
|
name, elements = '', []
|
|
for child in node:
|
|
if child.tag == 'name':
|
|
name = child.text.strip()
|
|
elif child.tag == 'block':
|
|
elements.append(child.text.strip())
|
|
elif child.tag == 'cat':
|
|
elements.append(convert_category_node(child))
|
|
return {name: elements}
|