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 @@ -202,7 +202,7 @@ def test_fcntl_f_pipesize(self):
202
202
pipesize_default = fcntl .fcntl (test_pipe_w , fcntl .F_GETPIPE_SZ )
203
203
pipesize = pipesize_default // 2 # A new value to detect change.
204
204
if pipesize < 512 : # the POSIX minimum
205
- raise unittest .SkitTest (
205
+ raise unittest .SkipTest (
206
206
'default pipesize too small to perform test.' )
207
207
fcntl .fcntl (test_pipe_w , fcntl .F_SETPIPE_SZ , pipesize )
208
208
self .assertEqual (fcntl .fcntl (test_pipe_w , fcntl .F_GETPIPE_SZ ),
Original file line number Diff line number Diff line change @@ -718,7 +718,7 @@ def test_pipesizes(self):
718
718
os .close (test_pipe_w )
719
719
pipesize = pipesize_default // 2
720
720
if pipesize < 512 : # the POSIX minimum
721
- raise unittest .SkitTest (
721
+ raise unittest .SkipTest (
722
722
'default pipesize too small to perform test.' )
723
723
p = subprocess .Popen (
724
724
[sys .executable , "-c" ,
Original file line number Diff line number Diff line change @@ -1229,6 +1229,7 @@ The Dragon De Monsyne
1229
1229
Bastien Montagne
1230
1230
Skip Montanaro
1231
1231
Peter Moody
1232
+ HyunKyun Moon
1232
1233
Alan D. Moore
1233
1234
Nicolai Moore
1234
1235
Paul Moore
You can’t perform that action at this time.
0 commit comments