Skip to content

Commit 24361c9

Browse files
committed
remove comment
1 parent 2ea02f9 commit 24361c9

File tree

1 file changed

+0
-7
lines changed

1 file changed

+0
-7
lines changed

Lib/email/message.py

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -78,13 +78,6 @@ def _parseparam(s):
7878
while s.find(';', start) == start:
7979
start += 1
8080
end = s.find(';', start)
81-
# The following while block is equivalent to:
82-
#
83-
# while end > 0 and (
84-
# s.count('"', start, end) - s.count('\\"', start, end)
85-
# ) % 2:
86-
# end = s.find(';', end + 1)
87-
#
8881
ind, diff = start, 0
8982
while end > 0:
9083
diff += s.count('"', ind, end) - s.count('\\"', ind, end)

0 commit comments

Comments
 (0)