Skip to content

Commit 4752488

Browse files
akuchlingpicnixz
andauthored
PEP8
Co-authored-by: Bénédikt Tran <[email protected]>
1 parent 23c2934 commit 4752488

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Doc/howto/regex.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -488,7 +488,7 @@ In actual programs, the most common style is to store the
488488
Python 3.8 added assignment expressions that shorten the above pattern
489489
by a line::
490490

491-
p = re.compile( ... )
491+
p = re.compile(...)
492492
if (m := p.match( 'string goes here' )):
493493
print('Match found: ', m.group())
494494
else:

0 commit comments

Comments
 (0)