We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 59a9613 commit ba2968bCopy full SHA for ba2968b
Lib/test/test_pyexpat.py
@@ -952,6 +952,12 @@ def test_set_maximum_amplification__fail_for_subparser(self):
952
subparser = parser.ExternalEntityParserCreate(None)
953
setter = functools.partial(self.set_maximum_amplification, subparser)
954
self.assert_root_parser_failure(setter, 123.45)
955
+
956
+ # NOTE: This is a workaround for issue
957
+ # https://github.com/python/cpython/issues/139400
958
+ # that can be dropped once pull request
959
+ # https://github.com/python/cpython/pull/139403
960
+ # has been merged.
961
del setter
962
del subparser
963
del parser
0 commit comments