From 50a0341baa5fc9a8e999f77e232cb21eae54ba0a Mon Sep 17 00:00:00 2001 From: Wojtek Kosior Date: Tue, 14 Jun 2022 10:40:57 +0200 Subject: restore compatibility with python 3.7 --- tests/test_build.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'tests') diff --git a/tests/test_build.py b/tests/test_build.py index a636488..8c204b9 100644 --- a/tests/test_build.py +++ b/tests/test_build.py @@ -281,7 +281,7 @@ def sample_source_change_index_json(monkeypatch, sample_source): @collect(variant_makers) def sample_source_add_comments(monkeypatch, sample_source): """Add index.json comments that should be preserved.""" - for dictionary in index_obj, *index_obj['definitions'], *expected: + for dictionary in (index_obj, *index_obj['definitions'], *expected): monkeypatch.setitem(dictionary, 'comment', 'index.json comment') @collect(variant_makers) @@ -356,7 +356,7 @@ def sample_source_add_extra_props(monkeypatch, sample_source): def sample_source_make_version_2(monkeypatch, sample_source, expected_documents_to_modify=[]): """Increase sources' schema version from 1 to 2.""" - for obj in index_obj, *expected_documents_to_modify: + for obj in (index_obj, *expected_documents_to_modify): monkeypatch.setitem(obj, '$schema', obj['$schema'].replace('1', '2')) permission_variant_makers = [] -- cgit v1.2.3 /htmlxref.cnf?id=15c3aa091100160bbe9c81650f9ab7a12bd7964e'>commitdiff
path: root/doc/htmlxref.cnf
AgeCommit message (Expand)Author
2020-01-12doc: Update htmlxref.cnf....Ludovic Courtès
2019-05-04doc: Update htmlxref.cnf....Ludovic Courtès
2018-07-05doc: Update URL of the Emacs-Guix manual....Ludovic Courtès
2018-07-05doc: Mention translations of the manual....Ludovic Courtès
2017-05-30doc: htmlxref: Fix link to Emacs-Guix manual....Alex Kost
2017-05-04doc: Add references to Emacs-Guix manual....Alex Kost
2016-12-29Remove Emacs interface....Alex Kost
2016-08-03doc: Update Texinfo HTML cross-reference file.....Ludovic Courtès
2016-03-30doc: Fix URL of gnutls-guile one-page-per-node manual....Ludovic Courtès
2016-02-21doc: Add Texinfo HTML cross-reference file....Ludovic Courtès