File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change 1
- import os
2
- import time
3
1
import errno
2
+ import functools
3
+ import os
4
+ import signal
4
5
import shlex
6
+ import time
5
7
import traceback
6
- import signal
7
- from functools import total_ordering
8
8
9
9
from supervisor .compat import maxint
10
10
from supervisor .compat import as_bytes
30
30
31
31
from supervisor .socket_manager import SocketManager
32
32
33
- @total_ordering
33
+ @functools . total_ordering
34
34
class Subprocess (object ):
35
35
36
36
"""A class to manage a subprocess."""
@@ -753,7 +753,7 @@ def _prepare_child_fds(self):
753
753
for i in range (3 , options .minfds ):
754
754
options .close_fd (i )
755
755
756
- @total_ordering
756
+ @functools . total_ordering
757
757
class ProcessGroupBase (object ):
758
758
def __init__ (self , config ):
759
759
self .config = config
You can’t perform that action at this time.
0 commit comments