aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorAmy <leiamy12@gmail.com>2020-06-15 13:39:33 -0400
committerAmy <leiamy12@gmail.com>2020-06-15 13:49:40 -0400
commit6de60977acd7e82ea204a04756addaef1de13c2d (patch)
treea498b46418570fadfd9032c69c73b877b5e73df3 /src
parent8816c9335b3276f92aca45ee0f5a2aacc6465e26 (diff)
downloadjinja-6de60977acd7e82ea204a04756addaef1de13c2d.tar.gz
remove sandbox._MagicFormatMapping
add test for escape formatter
Diffstat (limited to 'src')
-rw-r--r--src/jinja2/sandbox.py32
1 files changed, 0 insertions, 32 deletions
diff --git a/src/jinja2/sandbox.py b/src/jinja2/sandbox.py
index deecf61c..5c6d0946 100644
--- a/src/jinja2/sandbox.py
+++ b/src/jinja2/sandbox.py
@@ -75,37 +75,6 @@ _mutable_spec = (
)
-class _MagicFormatMapping(abc.Mapping):
- """This class implements a dummy wrapper to fix a bug in the Python
- standard library for string formatting.
-
- See https://bugs.python.org/issue13598 for information about why
- this is necessary.
- """
-
- def __init__(self, args, kwargs):
- self._args = args
- self._kwargs = kwargs
- self._last_index = 0
-
- def __getitem__(self, key):
- if key == "":
- idx = self._last_index
- self._last_index += 1
- try:
- return self._args[idx]
- except LookupError:
- pass
- key = str(idx)
- return self._kwargs[key]
-
- def __iter__(self):
- return iter(self._kwargs)
-
- def __len__(self):
- return len(self._kwargs)
-
-
def inspect_format_method(callable):
if not isinstance(
callable, (types.MethodType, types.BuiltinMethodType)
@@ -395,7 +364,6 @@ class SandboxedEnvironment(Environment):
kwargs = args[0]
args = None
- kwargs = _MagicFormatMapping(args, kwargs)
rv = formatter.vformat(s, args, kwargs)
return type(s)(rv)