@@ -65,7 +65,7 @@ def task_show_capture():
6565# note: py.io capture tests where copied from pylib 1.4.20.dev2 (rev 13d9af95547e)
6666
6767
68- def StdCaptureFD (
68+ def StdCaptureFD ( # noqa: N802
6969 out : bool = True , err : bool = True , in_ : bool = True
7070) -> MultiCapture [str ]:
7171 return capture .MultiCapture (
@@ -75,7 +75,7 @@ def StdCaptureFD(
7575 )
7676
7777
78- def StdCapture (
78+ def StdCapture ( # noqa: N802
7979 out : bool = True , err : bool = True , in_ : bool = True
8080) -> MultiCapture [str ]:
8181 return capture .MultiCapture (
@@ -85,7 +85,7 @@ def StdCapture(
8585 )
8686
8787
88- def TeeStdCapture (
88+ def TeeStdCapture ( # noqa: N802
8989 out : bool = True , err : bool = True , in_ : bool = True
9090) -> MultiCapture [str ]:
9191 return capture .MultiCapture (
@@ -594,9 +594,9 @@ def test_stdin_restored(self):
594594 assert sys .stdin is old
595595
596596 def test_stdin_nulled_by_default (self ):
597- print ("XXX this test may well hang instead of crashing" )
598- print ("XXX which indicates an error in the underlying capturing" )
599- print ("XXX mechanisms" )
597+ print ("XX this test may well hang instead of crashing" )
598+ print ("XX which indicates an error in the underlying capturing" )
599+ print ("XX mechanisms" )
600600 with self .getcapture ():
601601 pytest .raises (OSError , sys .stdin .read )
602602
0 commit comments