Skip to content

Commit 4d59a78

Browse files
committed
remove unused argument (closes #21135)
1 parent 0bd22d4 commit 4d59a78

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Lib/cgi.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1045,7 +1045,7 @@ def escape(s, quote=None):
10451045
return s
10461046

10471047

1048-
def valid_boundary(s, _vb_pattern=None):
1048+
def valid_boundary(s):
10491049
import re
10501050
if isinstance(s, bytes):
10511051
_vb_pattern = b"^[ -~]{0,200}[!-~]$"

0 commit comments

Comments
 (0)