Oleksandr Kravchuk 43e6a43e3d python: Remove unnecessary 'from __future__ import'
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
2020-08-03 11:40:27 +02:00

71 lines
1.7 KiB
Python

# Copyright 2017 Free Software Foundation, Inc.
# This file is part of GNU Radio
#
# SPDX-License-Identifier: GPL-2.0-or-later
#
import re
from os import path
try:
# raise ImportError()
from lxml import etree
HAVE_LXML = True
except ImportError:
import xml.etree.ElementTree as etree
HAVE_LXML = False
_validator_cache = {None: lambda xml: True}
def _get_validator(dtd=None):
validator = _validator_cache.get(dtd)
if not validator:
if not path.isabs(dtd):
dtd = path.join(path.dirname(__file__), dtd)
validator = _validator_cache[dtd] = etree.DTD(dtd).validate
return validator
def load_lxml(filename, document_type_def=None):
"""Load block description from xml file"""
try:
xml_tree = etree.parse(filename)
_get_validator(document_type_def)
element = xml_tree.getroot()
except etree.LxmlError:
raise ValueError("Failed to parse or validate {}".format(filename))
version_info = {}
for inst in xml_tree.xpath('/processing-instruction()'):
if inst.target == 'grc':
version_info.update(inst.attrib)
return element, version_info
def load_stdlib(filename, document_type_def=None):
"""Load block description from xml file"""
with open(filename, 'rb') as xml_file:
data = xml_file.read().decode('utf-8')
try:
element = etree.fromstring(data)
except etree.ParseError:
raise ValueError("Failed to parse {}".format(filename))
version_info = {}
for body in re.findall(r'<\?(.*?)\?>', data):
inst = etree.fromstring('<' + body + '/>')
if inst.tag == 'grc':
version_info.update(inst.attrib)
return element, version_info
load = load_lxml if HAVE_LXML else load_stdlib