pyallel 0.12.1__tar.gz → 0.12.2__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {pyallel-0.12.1 → pyallel-0.12.2}/PKG-INFO +1 -1
- {pyallel-0.12.1 → pyallel-0.12.2}/pyproject.toml +1 -1
- {pyallel-0.12.1 → pyallel-0.12.2}/src/pyallel/process.py +1 -1
- {pyallel-0.12.1 → pyallel-0.12.2}/LICENSE +0 -0
- {pyallel-0.12.1 → pyallel-0.12.2}/README.md +0 -0
- {pyallel-0.12.1 → pyallel-0.12.2}/src/pyallel/__init__.py +0 -0
- {pyallel-0.12.1 → pyallel-0.12.2}/src/pyallel/constants.py +0 -0
- {pyallel-0.12.1 → pyallel-0.12.2}/src/pyallel/errors.py +0 -0
- {pyallel-0.12.1 → pyallel-0.12.2}/src/pyallel/main.py +0 -0
- {pyallel-0.12.1 → pyallel-0.12.2}/src/pyallel/parser.py +0 -0
- {pyallel-0.12.1 → pyallel-0.12.2}/src/pyallel/py.typed +0 -0
|
@@ -358,10 +358,10 @@ class Process:
|
|
|
358
358
|
self._fd = open(fd_name, "rb")
|
|
359
359
|
self._process = subprocess.Popen(
|
|
360
360
|
[self.name, *self.args],
|
|
361
|
+
stdin=subprocess.DEVNULL,
|
|
361
362
|
stdout=fd,
|
|
362
363
|
stderr=subprocess.STDOUT,
|
|
363
364
|
env=self.env,
|
|
364
|
-
# shell=True,
|
|
365
365
|
)
|
|
366
366
|
|
|
367
367
|
def __del__(self) -> None:
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|