File tree 3 files changed +3
-2
lines changed
3 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -200,7 +200,7 @@ def test_fcntl_f_pipesize(self):
200
200
pipesize_default = fcntl .fcntl (test_pipe_w , fcntl .F_GETPIPE_SZ )
201
201
pipesize = pipesize_default // 2 # A new value to detect change.
202
202
if pipesize < 512 : # the POSIX minimum
203
- raise unittest .SkitTest (
203
+ raise unittest .SkipTest (
204
204
'default pipesize too small to perform test.' )
205
205
fcntl .fcntl (test_pipe_w , fcntl .F_SETPIPE_SZ , pipesize )
206
206
self .assertEqual (fcntl .fcntl (test_pipe_w , fcntl .F_GETPIPE_SZ ),
Original file line number Diff line number Diff line change @@ -707,7 +707,7 @@ def test_pipesizes(self):
707
707
os .close (test_pipe_w )
708
708
pipesize = pipesize_default // 2
709
709
if pipesize < 512 : # the POSIX minimum
710
- raise unittest .SkitTest (
710
+ raise unittest .SkipTest (
711
711
'default pipesize too small to perform test.' )
712
712
p = subprocess .Popen (
713
713
[sys .executable , "-c" ,
Original file line number Diff line number Diff line change @@ -1209,6 +1209,7 @@ The Dragon De Monsyne
1209
1209
Bastien Montagne
1210
1210
Skip Montanaro
1211
1211
Peter Moody
1212
+ HyunKyun Moon
1212
1213
Alan D. Moore
1213
1214
Nicolai Moore
1214
1215
Paul Moore
You can’t perform that action at this time.
0 commit comments