From b3a89172abc99b77b0f65df1ead030435ac04e89 Mon Sep 17 00:00:00 2001 From: Nick Sweeting Date: Tue, 6 Apr 2021 01:38:24 -0400 Subject: [PATCH] add original src url to dosctring --- archivebox/system.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/archivebox/system.py b/archivebox/system.py index e184e882..502e2461 100644 --- a/archivebox/system.py +++ b/archivebox/system.py @@ -19,7 +19,9 @@ from .config import OUTPUT_PERMISSIONS def run(*args, input=None, capture_output=True, timeout=None, check=False, text=False, start_new_session=True, **kwargs): - """Patched of subprocess.run to kill forked child subprocesses and fix blocking io making timeout=innefective""" + """Patched of subprocess.run to kill forked child subprocesses and fix blocking io making timeout=innefective + Mostly copied from https://github.com/python/cpython/blob/master/Lib/subprocess.py + """ if input is not None: if kwargs.get('stdin') is not None: