We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6524062 commit 09cae76Copy full SHA for 09cae76
test/run-tests.py
@@ -74,11 +74,9 @@ def _contextlib_suppress(*exceptions):
74
# Start daemon #
75
################
76
77
-extra_args = {}
78
-if sys.version_info >= (3, 6, 0):
79
- extra_args["encoding"] = locale.getpreferredencoding()
80
-else: #PY35: `subprocess.Popen` encoding parameter missing
81
- extra_args["universal_newlines"] = True
+extra_args = {
+ "encoding": locale.getpreferredencoding()
+}
82
83
# Spawn IPFS daemon in data directory
84
print("Starting IPFS daemon on {0}…".format(ADDR), file=sys.stderr)
0 commit comments