File tree Expand file tree Collapse file tree 3 files changed +3
-2
lines changed Expand file tree Collapse file tree 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):
200200 pipesize_default = fcntl .fcntl (test_pipe_w , fcntl .F_GETPIPE_SZ )
201201 pipesize = pipesize_default // 2 # A new value to detect change.
202202 if pipesize < 512 : # the POSIX minimum
203- raise unittest .SkitTest (
203+ raise unittest .SkipTest (
204204 'default pipesize too small to perform test.' )
205205 fcntl .fcntl (test_pipe_w , fcntl .F_SETPIPE_SZ , pipesize )
206206 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):
718718 os .close (test_pipe_w )
719719 pipesize = pipesize_default // 2
720720 if pipesize < 512 : # the POSIX minimum
721- raise unittest .SkitTest (
721+ raise unittest .SkipTest (
722722 'default pipesize too small to perform test.' )
723723 p = subprocess .Popen (
724724 [sys .executable , "-c" ,
Original file line number Diff line number Diff line change @@ -1220,6 +1220,7 @@ The Dragon De Monsyne
12201220Bastien Montagne
12211221Skip Montanaro
12221222Peter Moody
1223+ HyunKyun Moon
12231224Alan D. Moore
12241225Nicolai Moore
12251226Paul Moore
You can’t perform that action at this time.
0 commit comments