Merge pull request #10327 from AA-Turner/devnul
Use an explicit encoding when opening `os.devnul`
This commit is contained in:
commit
680f3e2097
|
@ -381,7 +381,7 @@ class FDCaptureBinary:
|
||||||
self.targetfd_save = os.dup(targetfd)
|
self.targetfd_save = os.dup(targetfd)
|
||||||
|
|
||||||
if targetfd == 0:
|
if targetfd == 0:
|
||||||
self.tmpfile = open(os.devnull)
|
self.tmpfile = open(os.devnull, encoding="utf-8")
|
||||||
self.syscapture = SysCapture(targetfd)
|
self.syscapture = SysCapture(targetfd)
|
||||||
else:
|
else:
|
||||||
self.tmpfile = EncodedFile(
|
self.tmpfile = EncodedFile(
|
||||||
|
|
Loading…
Reference in New Issue