summarylogtreecommitdiffstats
path: root/jinja-python-3.10.patch
blob: 647fe5bbb39f001d964e889f30cff424c741be6d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
--- a/runtime.py
+++ b/runtime.py
@@ -315,7 +315,7 @@ class Context(with_metaclass(ContextMeta
 
 # register the context as mapping if possible
 try:
-    from collections import Mapping
+    from collections.abc import Mapping
     Mapping.register(Context)
 except ImportError:
     pass
--- a/sandbox.py
+++ b/sandbox.py
@@ -14,7 +14,7 @@
 """
 import types
 import operator
-from collections import Mapping
+from collections.abc import Mapping
 from jinja2.environment import Environment
 from jinja2.exceptions import SecurityError
 from jinja2._compat import string_types, PY2