File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -916,7 +916,7 @@ def test_process_delayed_stdio__paused__stdin_pipe(self):
916
916
stdin = subprocess .PIPE ,
917
917
stdout = subprocess .PIPE ,
918
918
stderr = subprocess .PIPE ,
919
- __uvloop_sleep_after_fork = True ))
919
+ _uvloop_sleep_after_fork = True ))
920
920
self .assertIsNot (transport , None )
921
921
self .assertEqual (transport .get_returncode (), 0 )
922
922
self .assertEqual (
@@ -935,7 +935,7 @@ def test_process_delayed_stdio__paused__no_stdin(self):
935
935
stdin = None ,
936
936
stdout = subprocess .PIPE ,
937
937
stderr = subprocess .PIPE ,
938
- __uvloop_sleep_after_fork = True ))
938
+ _uvloop_sleep_after_fork = True ))
939
939
self .assertIsNot (transport , None )
940
940
self .assertEqual (transport .get_returncode (), 0 )
941
941
self .assertEqual (
Original file line number Diff line number Diff line change @@ -2750,7 +2750,7 @@ cdef class Loop:
2750
2750
executable = None ,
2751
2751
pass_fds = (),
2752
2752
# For tests only! Do not use in your code. Ever.
2753
- __uvloop_sleep_after_fork = False ):
2753
+ _uvloop_sleep_after_fork = False ):
2754
2754
2755
2755
# TODO: Implement close_fds (might not be very important in
2756
2756
# Python 3.5, since all FDs aren't inheritable by default.)
@@ -2770,7 +2770,7 @@ cdef class Loop:
2770
2770
if executable is not None :
2771
2771
args[0 ] = executable
2772
2772
2773
- if __uvloop_sleep_after_fork :
2773
+ if _uvloop_sleep_after_fork :
2774
2774
debug_flags |= __PROCESS_DEBUG_SLEEP_AFTER_FORK
2775
2775
2776
2776
waiter = self ._new_future()
You can’t perform that action at this time.
0 commit comments