[PATCH] tools: patch jinja2 for Python 3.10 compat

PR-URL: https://github.com/nodejs/node/pull/40296
Fixes: https://github.com/nodejs/node/issues/40294
Reviewed-By: Jiawen Geng <technicalcute@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Richard Lau <rlau@redhat.com>
Reviewed-By: Christian Clauss <cclauss@me.com>
Reviewed-By: Michaël Zasso <targos@protonmail.com>

Gbp-Pq: Name 24c403cfaf8bdbcd8b19037531c8998709d2b949.patch
This commit is contained in:
Michaël Zasso 2021-10-05 13:34:39 +02:00 committed by Lu zhiping
parent 44d40c9382
commit 90612a5d0d
1 changed files with 1 additions and 1 deletions

View File

@ -10,7 +10,7 @@
""" """
import operator import operator
import re import re
from collections import Mapping from collections.abc import Mapping
from jinja2.runtime import Undefined from jinja2.runtime import Undefined
from jinja2._compat import text_type, string_types, integer_types from jinja2._compat import text_type, string_types, integer_types
import decimal import decimal