unnecessary map (auto-fix)

ruff 'C417' --unsafe-fixes
This commit is contained in:
un-pogaz 2025-01-24 11:14:18 +01:00
parent 6cda6a2e5d
commit cc172a2a48
33 changed files with 44 additions and 60 deletions

View File

@ -19,7 +19,7 @@ quote-style = 'single'
[lint] [lint]
ignore = [ ignore = [
'E402', 'E722', 'E741', 'E402', 'E722', 'E741',
'UP012', 'UP030', 'UP032', 'UP038', 'C408', 'C413', 'C417', 'C420', 'UP012', 'UP030', 'UP032', 'UP038', 'C408', 'C413', 'C420',
] ]
select = [ select = [
'E', 'F', 'I', 'W', 'INT', 'E', 'F', 'I', 'W', 'INT',

View File

@ -46,10 +46,10 @@ def newer(targets, sources):
for f in targets: for f in targets:
if not os.path.exists(f): if not os.path.exists(f):
return True return True
ttimes = map(lambda x: os.stat(x).st_mtime, targets) ttimes = (os.stat(x).st_mtime for x in targets)
oldest_target = min(ttimes) oldest_target = min(ttimes)
try: try:
stimes = map(lambda x: os.stat(x).st_mtime, sources) stimes = (os.stat(x).st_mtime for x in sources)
newest_source = max(stimes) newest_source = max(stimes)
except FileNotFoundError: except FileNotFoundError:
newest_source = oldest_target +1 newest_source = oldest_target +1

View File

@ -279,7 +279,7 @@ def get_categories(dbcache, sort='name', book_ids=None, first_letter_sort=False,
# temporarily duplicating the categories lists. # temporarily duplicating the categories lists.
taglist = {} taglist = {}
for c, items in iteritems(categories): for c, items in iteritems(categories):
taglist[c] = dict(map(lambda t:(icu_lower(t.name), t), items)) taglist[c] = {icu_lower(t.name): t for t in items}
# Add the category values to the user categories # Add the category values to the user categories
for user_cat in sorted(user_categories, key=sort_key): for user_cat in sorted(user_categories, key=sort_key):

View File

@ -205,7 +205,7 @@ def do_list(
from calibre.utils.terminal import ColoredStream, geometry from calibre.utils.terminal import ColoredStream, geometry
output_table = prepare_output_table(fields, book_ids, data, metadata) output_table = prepare_output_table(fields, book_ids, data, metadata)
widths = list(map(lambda x: 0, fields)) widths = [0 for x in fields]
for record in output_table: for record in output_table:
for j in range(len(fields)): for j in range(len(fields)):
@ -215,7 +215,7 @@ def do_list(
if not screen_width: if not screen_width:
screen_width = 80 screen_width = 80
field_width = screen_width // len(fields) field_width = screen_width // len(fields)
base_widths = list(map(lambda x: min(x + 1, field_width), widths)) base_widths = [min(x + 1, field_width) for x in widths]
while sum(base_widths) < screen_width: while sum(base_widths) < screen_width:
adjusted = False adjusted = False

View File

@ -74,7 +74,7 @@ def do_list(fields, data, opts):
from calibre.utils.terminal import ColoredStream, geometry from calibre.utils.terminal import ColoredStream, geometry
separator = ' ' separator = ' '
widths = list(map(lambda x: 0, fields)) widths = [0 for x in fields]
for i in data: for i in data:
for j, field in enumerate(fields): for j, field in enumerate(fields):
widths[j] = max(widths[j], max(len(field), len(str(i[field])))) widths[j] = max(widths[j], max(len(field), len(str(i[field]))))
@ -83,7 +83,7 @@ def do_list(fields, data, opts):
if not screen_width: if not screen_width:
screen_width = 80 screen_width = 80
field_width = screen_width // len(fields) field_width = screen_width // len(fields)
base_widths = list(map(lambda x: min(x + 1, field_width), widths)) base_widths = [min(x + 1, field_width) for x in widths]
while sum(base_widths) < screen_width: while sum(base_widths) < screen_width:
adjusted = False adjusted = False
@ -104,7 +104,7 @@ def do_list(fields, data, opts):
with ColoredStream(sys.stdout, fg='green'): with ColoredStream(sys.stdout, fg='green'):
prints(''.join(titles)) prints(''.join(titles))
wrappers = list(map(lambda x: TextWrapper(x - 1), widths)) wrappers = [TextWrapper(x - 1) for x in widths]
for record in data: for record in data:
text = [ text = [

View File

@ -110,7 +110,7 @@ class BaseTest(unittest.TestCase):
continue continue
attr1, attr2 = getattr(mi1, attr), getattr(mi2, attr) attr1, attr2 = getattr(mi1, attr), getattr(mi2, attr)
if attr == 'formats': if attr == 'formats':
attr1, attr2 = map(lambda x:tuple(x) if x else (), (attr1, attr2)) attr1, attr2 = (tuple(x) if x else () for x in (attr1, attr2))
if isinstance(attr1, (tuple, list)) and 'authors' not in attr and 'languages' not in attr: if isinstance(attr1, (tuple, list)) and 'authors' not in attr and 'languages' not in attr:
attr1, attr2 = set(attr1), set(attr2) attr1, attr2 = set(attr1), set(attr2)
self.assertEqual(attr1, attr2, self.assertEqual(attr1, attr2,

View File

@ -34,10 +34,10 @@ class Pages:
@property @property
def page_locations(self) -> list[int]: def page_locations(self) -> list[int]:
return list(itertools.chain.from_iterable(list(map(lambda pg: pg.page_locations, self.__pages_groups)))) return list(itertools.chain.from_iterable([pg.page_locations for pg in self.__pages_groups]))
@property @property
def number_of_pages(self) -> int: def number_of_pages(self) -> int:
return sum(list(map(lambda pg: len(pg.page_locations), self.__pages_groups))) return sum([len(pg.page_locations) for pg in self.__pages_groups])

View File

@ -452,7 +452,7 @@ class EPUBOutput(OutputFormatPlugin):
br.tag = XHTML('p') br.tag = XHTML('p')
br.text = '\u00a0' br.text = '\u00a0'
style = br.get('style', '').split(';') style = br.get('style', '').split(';')
style = list(filter(None, map(lambda x: x.strip(), style))) style = list(filter(None, (x.strip() for x in style)))
style.append('margin:0pt; border:0pt') style.append('margin:0pt; border:0pt')
# If the prior tag is a block (including a <br> we replaced) # If the prior tag is a block (including a <br> we replaced)
# then this <br> replacement should have a 1-line height. # then this <br> replacement should have a 1-line height.

View File

@ -1432,9 +1432,8 @@ class OPFCreator(Metadata):
`entries`: List of (path, mime-type) If mime-type is None it is autodetected `entries`: List of (path, mime-type) If mime-type is None it is autodetected
''' '''
entries = list(map(lambda x: x if os.path.isabs(x[0]) else entries = [x if os.path.isabs(x[0]) else
(os.path.abspath(os.path.join(self.base_path, x[0])), x[1]), (os.path.abspath(os.path.join(self.base_path, x[0])), x[1]) for x in entries]
entries))
self.manifest = Manifest.from_paths(entries) self.manifest = Manifest.from_paths(entries)
self.manifest.set_basedir(self.base_path) self.manifest.set_basedir(self.base_path)
@ -1464,8 +1463,8 @@ class OPFCreator(Metadata):
`entries`: List of paths `entries`: List of paths
''' '''
entries = list(map(lambda x: x if os.path.isabs(x) else entries = [x if os.path.isabs(x) else
os.path.abspath(os.path.join(self.base_path, x)), entries)) os.path.abspath(os.path.join(self.base_path, x)) for x in entries]
self.spine = Spine.from_paths(entries, self.manifest) self.spine = Spine.from_paths(entries, self.manifest)
def set_toc(self, toc): def set_toc(self, toc):

View File

@ -495,7 +495,7 @@ def metadata_to_xmp_packet(mi):
if not mi.is_null('pubdate'): if not mi.is_null('pubdate'):
create_sequence_property(dc, 'dc:date', [isoformat(mi.pubdate, as_utc=False)]) # Adobe spec recommends local time create_sequence_property(dc, 'dc:date', [isoformat(mi.pubdate, as_utc=False)]) # Adobe spec recommends local time
if not mi.is_null('languages'): if not mi.is_null('languages'):
langs = list(filter(None, map(lambda x:lang_as_iso639_1(x) or canonicalize_lang(x), mi.languages))) langs = list(filter(None, (lang_as_iso639_1(x) or canonicalize_lang(x) for x in mi.languages)))
if langs: if langs:
create_sequence_property(dc, 'dc:language', langs, ordered=False) create_sequence_property(dc, 'dc:language', langs, ordered=False)

View File

@ -647,4 +647,4 @@ def convert_color_for_font_tag(val):
def clamp(x): def clamp(x):
return min(x, max(0, x), 1) return min(x, max(0, x), 1)
rgb = map(clamp, rgba[:3]) rgb = map(clamp, rgba[:3])
return '#' + ''.join(map(lambda x:'%02x' % int(x * 255), rgb)) return '#' + ''.join(('%02x' % int(x * 255) for x in rgb))

View File

@ -60,9 +60,7 @@ class LegacyHeaderRecord:
fields = raw.lstrip().replace(b'\x1b\x1b\x1b', b'\x1b').split(b'\x1b') fields = raw.lstrip().replace(b'\x1b\x1b\x1b', b'\x1b').split(b'\x1b')
self.title = fix_punct(fields[0].decode('cp950', 'replace')) self.title = fix_punct(fields[0].decode('cp950', 'replace'))
self.num_records = int(fields[1]) self.num_records = int(fields[1])
self.chapter_titles = list(map( self.chapter_titles = [fix_punct(x.decode('cp950', 'replace').rstrip('\x00')) for x in fields[2:]]
lambda x: fix_punct(x.decode('cp950', 'replace').rstrip('\x00')),
fields[2:]))
class UnicodeHeaderRecord: class UnicodeHeaderRecord:
@ -72,9 +70,7 @@ class UnicodeHeaderRecord:
b'\x1b\x00').split(b'\x1b\x00') b'\x1b\x00').split(b'\x1b\x00')
self.title = fix_punct(fields[0].decode('utf_16_le', 'ignore')) self.title = fix_punct(fields[0].decode('utf_16_le', 'ignore'))
self.num_records = int(fields[1]) self.num_records = int(fields[1])
self.chapter_titles = list(map( self.chapter_titles = [fix_punct(x.decode('utf_16_le', 'replace').rstrip('\x00')) for x in fields[2].split(b'\r\x00\n\x00')]
lambda x: fix_punct(x.decode('utf_16_le', 'replace').rstrip('\x00')),
fields[2].split(b'\r\x00\n\x00')))
class Reader(FormatReader): class Reader(FormatReader):

View File

@ -79,7 +79,7 @@ class LinearGradientPattern(Dictionary):
matrix): matrix):
start = gradient.start() start = gradient.start()
stop = gradient.finalStop() stop = gradient.finalStop()
stops = list(map(lambda x: [x[0], x[1].getRgbF()], gradient.stops())) stops = [[x[0], x[1].getRgbF()] for x in gradient.stops()]
spread = gradient.spread() spread = gradient.spread()
if spread != gradient.PadSpread: if spread != gradient.PadSpread:
inv = matrix.inverted()[0] inv = matrix.inverted()[0]

View File

@ -660,10 +660,8 @@ class MetadataBulkDialog(QDialog, Ui_MetadataBulkDialog):
self.button_transform_publishers.clicked.connect(self.transform_publishers) self.button_transform_publishers.clicked.connect(self.transform_publishers)
self.button_transform_series.clicked.connect(self.transform_series) self.button_transform_series.clicked.connect(self.transform_series)
self.tag_map_rules = self.author_map_rules = self.publisher_map_rules = self.series_map_rules = () self.tag_map_rules = self.author_map_rules = self.publisher_map_rules = self.series_map_rules = ()
tuple(map(lambda b: (b.clicked.connect(self.clear_transform_rules_for), b.setIcon(QIcon.ic('clear_left.png')), b.setToolTip(_( tuple(((b.clicked.connect(self.clear_transform_rules_for), b.setIcon(QIcon.ic('clear_left.png')), b.setToolTip(_(
'Clear the rules'))), 'Clear the rules'))) for b in (self.button_clear_tags_rules, self.button_clear_authors_rules, self.button_clear_publishers_rules)))
(self.button_clear_tags_rules, self.button_clear_authors_rules, self.button_clear_publishers_rules)
))
self.update_transform_labels() self.update_transform_labels()
if starting_tab < 0: if starting_tab < 0:
starting_tab = gprefs.get('bulk_metadata_window_tab', 0) starting_tab = gprefs.get('bulk_metadata_window_tab', 0)

View File

@ -505,8 +505,7 @@ class SearchDialog(QDialog):
self.mc = '~' self.mc = '~'
else: else:
self.mc = '^' self.mc = '^'
all, any, phrase, none = map(lambda x: str(x.text()), all, any, phrase, none = (str(x.text()) for x in (self.all, self.any, self.phrase, self.none))
(self.all, self.any, self.phrase, self.none))
all, any, none = map(self.tokens, (all, any, none)) all, any, none = map(self.tokens, (all, any, none))
phrase = phrase.strip() phrase = phrase.strip()
all = ' and '.join(all) all = ' and '.join(all)

View File

@ -59,7 +59,7 @@ class CodeEditor(QPlainTextEdit):
def line_number_area_width(self): def line_number_area_width(self):
# get largest width of digits # get largest width of digits
fm = self.fontMetrics() fm = self.fontMetrics()
self.number_width = max(map(lambda x:fm.horizontalAdvance(str(x)), range(10))) self.number_width = max((fm.horizontalAdvance(str(x)) for x in range(10)))
digits = 1 digits = 1
limit = max(1, self.blockCount()) limit = max(1, self.blockCount())
while limit >= 10: while limit >= 10:

View File

@ -107,9 +107,7 @@ class ConfigWidget(ConfigWidgetBase, Ui_Form):
self.opt_columns.verticalHeader().hide() self.opt_columns.verticalHeader().hide()
self.opt_columns.setRowCount(len(colmap)) self.opt_columns.setRowCount(len(colmap))
self.column_desc = dict(map(lambda x:(CreateCustomColumn.column_types[x]['datatype'], self.column_desc = {CreateCustomColumn.column_types[x]['datatype']: CreateCustomColumn.column_types[x]['text'] for x in CreateCustomColumn.column_types}
CreateCustomColumn.column_types[x]['text']),
CreateCustomColumn.column_types))
for row, key in enumerate(colmap): for row, key in enumerate(colmap):
self.setup_row(row, key, row) self.setup_row(row, key, row)

View File

@ -157,8 +157,7 @@ class CreateCustomColumn(QDialog):
ct = '*' + ct ct = '*' + ct
self.orig_column_number = c['colnum'] self.orig_column_number = c['colnum']
self.orig_column_name = col self.orig_column_name = col
column_numbers = dict(map(lambda x:(self.column_types[x]['datatype'], x), column_numbers = {self.column_types[x]['datatype']: x for x in self.column_types}
self.column_types))
self.column_type_box.setCurrentIndex(column_numbers[ct]) self.column_type_box.setCurrentIndex(column_numbers[ct])
self.column_type_box.setEnabled(False) self.column_type_box.setEnabled(False)

View File

@ -236,7 +236,7 @@ class IdLinksEditor(Dialog):
def edit_rule(self, r=-1): def edit_rule(self, r=-1):
key = name = template = '' key = name = template = ''
if r > -1: if r > -1:
key, name, template = map(lambda c: self.table.item(r, c).text(), range(3)) key, name, template = (self.table.item(r, c).text() for c in range(3))
d = IdLinksRuleEdit(key, name, template, self) d = IdLinksRuleEdit(key, name, template, self)
if d.exec() == QDialog.DialogCode.Accepted: if d.exec() == QDialog.DialogCode.Accepted:
if r < 0: if r < 0:

View File

@ -86,7 +86,7 @@ class TextureChooser(QDialog):
images = [{ images = [{
'fname': ':'+os.path.basename(x), 'fname': ':'+os.path.basename(x),
'path': x, 'path': x,
'name': ' '.join(map(lambda s: s.capitalize(), os.path.splitext(os.path.basename(x))[0].split('_'))) 'name': ' '.join((s.capitalize() for s in os.path.splitext(os.path.basename(x))[0].split('_')))
} for x in glob.glob(I('textures/*.png'))] + [{ } for x in glob.glob(I('textures/*.png'))] + [{
'fname': os.path.basename(x), 'fname': os.path.basename(x),
'path': x, 'path': x,

View File

@ -363,9 +363,7 @@ class SearchBoxMixin: # {{{
self.search.clear() self.search.clear()
self.search.setMaximumWidth(self.width()-150) self.search.setMaximumWidth(self.width()-150)
self.action_focus_search = QAction(self) self.action_focus_search = QAction(self)
shortcuts = list( shortcuts = [str(x.toString(QKeySequence.SequenceFormat.PortableText)) for x in QKeySequence.keyBindings(QKeySequence.StandardKey.Find)]
map(lambda x:str(x.toString(QKeySequence.SequenceFormat.PortableText)),
QKeySequence.keyBindings(QKeySequence.StandardKey.Find)))
shortcuts += ['/', 'Alt+S'] shortcuts += ['/', 'Alt+S']
self.keyboard.register_shortcut('start search', _('Start search'), self.keyboard.register_shortcut('start search', _('Start search'),
default_keys=shortcuts, action=self.action_focus_search) default_keys=shortcuts, action=self.action_focus_search)

View File

@ -73,8 +73,7 @@ class AdvSearchBuilderDialog(QDialog, Ui_Dialog):
self.mc = '=' self.mc = '='
else: else:
self.mc = '~' self.mc = '~'
all, any, phrase, none = map(lambda x: str(x.text()), all, any, phrase, none = (str(x.text()) for x in (self.all, self.any, self.phrase, self.none))
(self.all, self.any, self.phrase, self.none))
all, any, none = map(self.tokens, (all, any, none)) all, any, none = map(self.tokens, (all, any, none))
phrase = phrase.strip() phrase = phrase.strip()
all = ' and '.join(all) all = ' and '.join(all)

View File

@ -80,8 +80,7 @@ class AdvSearchBuilderDialog(QDialog, Ui_Dialog):
self.mc = '=' self.mc = '='
else: else:
self.mc = '~' self.mc = '~'
all, any, phrase, none = list(map(lambda x: str(x.text()), all, any, phrase, none = [str(x.text()) for x in (self.all, self.any, self.phrase, self.none)]
(self.all, self.any, self.phrase, self.none)))
all, any, none = list(map(self.tokens, (all, any, none))) all, any, none = list(map(self.tokens, (all, any, none)))
phrase = phrase.strip() phrase = phrase.strip()
all = ' and '.join(all) all = ' and '.join(all)

View File

@ -73,8 +73,7 @@ class AdvSearchBuilderDialog(QDialog, Ui_Dialog):
self.mc = '=' self.mc = '='
else: else:
self.mc = '~' self.mc = '~'
all, any, phrase, none = list(map(lambda x: type(u'')(x.text()), all, any, phrase, none = [type(u'')(x.text()) for x in (self.all, self.any, self.phrase, self.none)]
(self.all, self.any, self.phrase, self.none)))
all, any, none = list(map(self.tokens, (all, any, none))) all, any, none = list(map(self.tokens, (all, any, none)))
phrase = phrase.strip() phrase = phrase.strip()
all = ' and '.join(all) all = ' and '.join(all)

View File

@ -181,7 +181,7 @@ class TextBrowser(PlainTextEdit): # {{{
def calculate_metrics(self): def calculate_metrics(self):
fm = self.fontMetrics() fm = self.fontMetrics()
self.number_width = max(map(lambda x:fm.horizontalAdvance(str(x)), range(10))) self.number_width = max((fm.horizontalAdvance(str(x)) for x in range(10)))
self.space_width = fm.horizontalAdvance(' ') self.space_width = fm.horizontalAdvance(' ')
def show_context_menu(self, pos): def show_context_menu(self, pos):

View File

@ -282,7 +282,7 @@ class TextEdit(PlainTextEdit):
self.setFont(font) self.setFont(font)
self.highlighter.apply_theme(theme) self.highlighter.apply_theme(theme)
fm = self.fontMetrics() fm = self.fontMetrics()
self.number_width = max(map(lambda x:fm.horizontalAdvance(str(x)), range(10))) self.number_width = max((fm.horizontalAdvance(str(x)) for x in range(10)))
self.size_hint = QSize(self.expected_geometry[0] * fm.averageCharWidth(), self.expected_geometry[1] * fm.height()) self.size_hint = QSize(self.expected_geometry[0] * fm.averageCharWidth(), self.expected_geometry[1] * fm.height())
self.highlight_color = theme_color(theme, 'HighlightRegion', 'bg') self.highlight_color = theme_color(theme, 'HighlightRegion', 'bg')
self.highlight_cursor_line() self.highlight_cursor_line()

View File

@ -2119,7 +2119,7 @@ class LibraryDatabase2(LibraryDatabase, SchemaUpgrade, CustomColumns):
# temporarily duplicating the categories lists. # temporarily duplicating the categories lists.
taglist = {} taglist = {}
for c in categories.keys(): for c in categories.keys():
taglist[c] = dict(map(lambda t:(icu_lower(t.name), t), categories[c])) taglist[c] = {icu_lower(t.name): t for t in categories[c]}
muc = self.prefs.get('grouped_search_make_user_categories', []) muc = self.prefs.get('grouped_search_make_user_categories', [])
gst = self.prefs.get('grouped_search_terms', {}) gst = self.prefs.get('grouped_search_terms', {})

View File

@ -69,7 +69,7 @@ def parse_multipart_byterange(buf, content_type): # {{{
if not cr.startswith('bytes '): if not cr.startswith('bytes '):
raise ValueError('Malformed Content-Range header in sub-part, no prefix') raise ValueError('Malformed Content-Range header in sub-part, no prefix')
try: try:
start, stop = map(lambda x: int(x.strip()), cr.partition(' ')[-1].partition('/')[0].partition('-')[::2]) start, stop = (int(x.strip()) for x in cr.partition(' ')[-1].partition('/')[0].partition('-')[::2])
except Exception: except Exception:
raise ValueError('Malformed Content-Range header in sub-part, failed to parse byte range') raise ValueError('Malformed Content-Range header in sub-part, failed to parse byte range')
content_length = stop - start + 1 content_length = stop - start + 1

View File

@ -131,7 +131,7 @@ class TestAuth(BaseTest):
opts = Options(userdb=':memory:') opts = Options(userdb=':memory:')
Data = namedtuple('Data', 'username') Data = namedtuple('Data', 'username')
with TemporaryDirectory() as base: with TemporaryDirectory() as base:
l1, l2, l3 = map(lambda x: os.path.join(base, 'l' + x), '123') l1, l2, l3 = (os.path.join(base, 'l' + x) for x in '123')
for l in (l1, l2, l3): for l in (l1, l2, l3):
create_backend(l).close() create_backend(l).close()
ctx = Handler((l1, l2, l3), opts).router.ctx ctx = Handler((l1, l2, l3), opts).router.ctx

View File

@ -198,7 +198,7 @@ class LoopTest(BaseTest):
'Test serving over SSL' 'Test serving over SSL'
address = '127.0.0.1' address = '127.0.0.1'
with TemporaryDirectory('srv-test-ssl') as tdir: with TemporaryDirectory('srv-test-ssl') as tdir:
cert_file, key_file, ca_file = map(lambda x:os.path.join(tdir, x), 'cka') cert_file, key_file, ca_file = (os.path.join(tdir, x) for x in 'cka')
create_server_cert(address, ca_file, cert_file, key_file, key_size=2048) create_server_cert(address, ca_file, cert_file, key_file, key_size=2048)
ctx = ssl.create_default_context(cafile=ca_file) ctx = ssl.create_default_context(cafile=ca_file)
ctx.verify_flags |= ssl.VERIFY_X509_STRICT ctx.verify_flags |= ssl.VERIFY_X509_STRICT

View File

@ -36,8 +36,8 @@ def parse_restriction(raw):
lr = r.get('library_restrictions', {}) lr = r.get('library_restrictions', {})
if not isinstance(lr, dict): if not isinstance(lr, dict):
lr = {} lr = {}
r['allowed_library_names'] = frozenset(map(lambda x: x.lower(), r.get('allowed_library_names', ()))) r['allowed_library_names'] = frozenset((x.lower() for x in r.get('allowed_library_names', ())))
r['blocked_library_names'] = frozenset(map(lambda x: x.lower(), r.get('blocked_library_names', ()))) r['blocked_library_names'] = frozenset((x.lower() for x in r.get('blocked_library_names', ())))
r['library_restrictions'] = {k.lower(): v or '' for k, v in iteritems(lr)} r['library_restrictions'] = {k.lower(): v or '' for k, v in iteritems(lr)}
return r return r

View File

@ -344,7 +344,7 @@ class BuildTest(unittest.TestCase):
# package. On non-frozen builds, it should just work because the # package. On non-frozen builds, it should just work because the
# hard-coded paths of the Qt installation should work. If they do not, # hard-coded paths of the Qt installation should work. If they do not,
# then it is a distro problem. # then it is a distro problem.
fmts = set(map(lambda x: x.data().decode('utf-8'), QImageReader.supportedImageFormats())) # no2to3 fmts = {x.data().decode('utf-8') for x in QImageReader.supportedImageFormats()} # no2to3
testf = {'jpg', 'png', 'svg', 'ico', 'gif', 'webp'} testf = {'jpg', 'png', 'svg', 'ico', 'gif', 'webp'}
self.assertEqual(testf.intersection(fmts), testf, "Qt doesn't seem to be able to load some of its image plugins. Available plugins: %s" % fmts) self.assertEqual(testf.intersection(fmts), testf, "Qt doesn't seem to be able to load some of its image plugins. Available plugins: %s" % fmts)
data = P('images/blank.png', allow_user_override=False, data=True) data = P('images/blank.png', allow_user_override=False, data=True)

View File

@ -99,7 +99,7 @@ class Matcher:
w = [Worker(requests, results) for i in range(max(1, cpu_count()))] w = [Worker(requests, results) for i in range(max(1, cpu_count()))]
[x.start() for x in w] [x.start() for x in w]
workers.extend(w) workers.extend(w)
items = map(lambda x: normalize('NFC', str(x)), filter(None, items)) items = (normalize('NFC', str(x)) for x in filter(None, items))
self.items = items = tuple(items) self.items = items = tuple(items)
tasks = split(items, len(workers)) tasks = split(items, len(workers))
self.task_maps = [{j: i for j, (i, _) in enumerate(task)} for task in tasks] self.task_maps = [{j: i for j, (i, _) in enumerate(task)} for task in tasks]