BIND 10 master, updated. 18f8355aae2aabb011a57176ec7381b656e52260 [master] Don't buffer anything in Popen()

BIND 10 source code commits bind10-changes at lists.isc.org
Fri Jul 5 13:19:49 UTC 2013


The branch, master has been updated
       via  18f8355aae2aabb011a57176ec7381b656e52260 (commit)
      from  4c9ef2963127e8d887a2ca38435e61a28f1c7c63 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit 18f8355aae2aabb011a57176ec7381b656e52260
Author: Mukund Sivaraman <muks at isc.org>
Date:   Fri Jul 5 18:45:05 2013 +0530

    [master] Don't buffer anything in Popen()

-----------------------------------------------------------------------

Summary of changes:
 tests/lettuce/features/terrain/terrain.py |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

-----------------------------------------------------------------------
diff --git a/tests/lettuce/features/terrain/terrain.py b/tests/lettuce/features/terrain/terrain.py
index d82a6e1..d0ba4fe 100644
--- a/tests/lettuce/features/terrain/terrain.py
+++ b/tests/lettuce/features/terrain/terrain.py
@@ -135,7 +135,7 @@ class RunningProcess:
         """
         stderr_write = open(self.stderr_filename, "w")
         stdout_write = open(self.stdout_filename, "w")
-        self.process = subprocess.Popen(args, 1, None, subprocess.PIPE,
+        self.process = subprocess.Popen(args, 0, None, subprocess.PIPE,
                                         stdout_write, stderr_write)
         # open them again, this time for reading
         self.stderr = open(self.stderr_filename, "r")



More information about the bind10-changes mailing list