Skip to content

Commit

Permalink
etree: Break a long line for PEP 8
Browse files Browse the repository at this point in the history
  • Loading branch information
hartwork committed Feb 24, 2024
1 parent 4b49de9 commit 3c960a6
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Lib/test/test_xml_etree.py
Original file line number Diff line number Diff line change
Expand Up @@ -1709,7 +1709,8 @@ def test_unknown_event(self):

def test_flush_reparse_deferral_enabled(self):
if pyexpat.version_info < (2, 6, 0):
self.skipTest(f'Expat {pyexpat.version_info} does not support reparse deferral')
self.skipTest(f'Expat {pyexpat.version_info} does not '
'support reparse deferral')

parser = ET.XMLPullParser(events=('start', 'end'))
is_python = hasattr(parser._parser, '_parser') # rather than C
Expand Down

0 comments on commit 3c960a6

Please sign in to comment.