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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: pyallel
3
- Version: 0.12.1
3
+ Version: 0.12.2
4
4
  Summary: Run and handle the output of multiple executables in pyallel (as in parallel)
5
5
  Home-page: https://github.com/Danthewaann/pyallel
6
6
  License: MIT
@@ -1,6 +1,6 @@
1
1
  [tool.poetry]
2
2
  name = "pyallel"
3
- version = "0.12.1"
3
+ version = "0.12.2"
4
4
  description = "Run and handle the output of multiple executables in pyallel (as in parallel)"
5
5
  authors = ["Daniel Black <danielcrblack@gmail.com>"]
6
6
  license = "MIT"
@@ -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