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>
This commit is contained in:
Michaël Zasso 2021-10-05 13:34:39 +02:00 committed by Rich Trott
parent 75c4bdeb21
commit 24c403cfaf

View File

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