We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1a27d40 commit 2df84c2Copy full SHA for 2df84c2
uvloop/loop.pyx
@@ -2750,7 +2750,7 @@ cdef class Loop:
2750
executable=None,
2751
pass_fds=(),
2752
# For tests only! Do not use in your code. Ever.
2753
- __uvloop_sleep_after_fork=False):
+ _uvloop_sleep_after_fork=False):
2754
2755
# TODO: Implement close_fds (might not be very important in
2756
# Python 3.5, since all FDs aren't inheritable by default.)
@@ -2770,7 +2770,7 @@ cdef class Loop:
2770
if executable is not None:
2771
args[0] = executable
2772
2773
- if __uvloop_sleep_after_fork:
+ if _uvloop_sleep_after_fork:
2774
debug_flags |= __PROCESS_DEBUG_SLEEP_AFTER_FORK
2775
2776
waiter = self._new_future()
0 commit comments