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 a91ed6b commit c056cfeCopy full SHA for c056cfe
Lib/test/test_pyexpat.py
@@ -811,10 +811,10 @@ def test_cycle(self):
811
parser = expat.ParserCreate()
812
subparser = parser.ExternalEntityParserCreate(None)
813
814
- # Hack a cycle onto it; note that parsing now would not work.
+ # This hacks a cycle onto it; note that parsing now would not work.
815
parser.CharacterDataHandler = subparser
816
817
- # Self-test that the cycle is real
+ # This self-tests that the cycle is real.
818
self.assertIn(parser, gc.get_referents(subparser))
819
self.assertIn(subparser, gc.get_referents(parser))
820
0 commit comments