Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
sorry. fix last commit
- Loading branch information
Showing
with
2 additions
and
2 deletions.
-
+2
−2
topaz/modules/process.py
|
@@ -7,7 +7,7 @@ |
|
|
from topaz.module import ModuleDef |
|
|
from topaz.modules.signal import SIGNALS |
|
|
from topaz.system import IS_WINDOWS |
|
|
from topaz.error import error_for_oserror, error_for_errno |
|
|
from topaz.error import error_for_oserror |
|
|
|
|
|
|
|
|
if IS_WINDOWS: |
|
@@ -19,7 +19,7 @@ def fork(): |
|
|
raise NotImplementedError("fork on windows") |
|
|
|
|
|
def killpg(pid, sigs): |
|
|
raise error_for_errno(errno.EINVAL) |
|
|
raise OSError(errno.EINVAL, "group kill not available on windows") |
|
|
|
|
|
def WEXITSTATUS(status): |
|
|
return status |
|
|
You can’t perform that action at this time.
You signed in with another tab or window. Reload to refresh your session.
You signed out in another tab or window. Reload to refresh your session.