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 cff9c7c commit 59a9613Copy full SHA for 59a9613
Lib/test/test_pyexpat.py
@@ -909,6 +909,12 @@ def test_set_activation_threshold__fail_for_subparser(self):
909
subparser = parser.ExternalEntityParserCreate(None)
910
setter = functools.partial(self.set_activation_threshold, subparser)
911
self.assert_root_parser_failure(setter, 12345)
912
+
913
+ # NOTE: This is a workaround for issue
914
+ # https://github.com/python/cpython/issues/139400
915
+ # that can be dropped once pull request
916
+ # https://github.com/python/cpython/pull/139403
917
+ # has been merged.
918
del setter
919
del subparser
920
del parser
0 commit comments