Skip to content

Commit b92abad

Browse files
committed
patch 7.4.1291
Problem: On MS-Windows the channel test server doesn't quit. Solution: Use return instead of break. (Ken Takata)
1 parent cbebd48 commit b92abad

2 files changed

Lines changed: 3 additions & 1 deletion

File tree

src/testdir/test_channel.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ def handle(self):
133133
elif decoded[1] == '!quit!':
134134
# we're done
135135
self.server.shutdown()
136-
break
136+
return
137137
elif decoded[1] == '!crash!':
138138
# Crash!
139139
42 / 0

src/version.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -747,6 +747,8 @@ static char *(features[]) =
747747

748748
static int included_patches[] =
749749
{ /* Add new patch number below this line */
750+
/**/
751+
1291,
750752
/**/
751753
1290,
752754
/**/

0 commit comments

Comments
 (0)