Răsfoiți Sursa

add original src url to dosctring

Nick Sweeting 4 ani în urmă
părinte
comite
b3a89172ab
1 a modificat fișierele cu 3 adăugiri și 1 ștergeri
  1. 3 1
      archivebox/system.py

+ 3 - 1
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: