From 83c8953d1b1bcc2d128875c2935c01fdcfc2e18d Mon Sep 17 00:00:00 2001
From: sunshine <sunshine>
Date: Fri, 6 Aug 2004 13:43:46 +0000
Subject: [PATCH] Removed debug print statements

---
 apps/sam/python/src/i2p/test/test_select.py | 6 +-----
 1 file changed, 1 insertion(+), 5 deletions(-)

diff --git a/apps/sam/python/src/i2p/test/test_select.py b/apps/sam/python/src/i2p/test/test_select.py
index c6e6c3637d..44a603c9b4 100644
--- a/apps/sam/python/src/i2p/test/test_select.py
+++ b/apps/sam/python/src/i2p/test/test_select.py
@@ -48,13 +48,9 @@ def minitest_select(rans, wans, eans, timeout,
   ans2 = [[L.index(x) + 1 for x in ans2[i]] for i in range(3)]
   ans3 = [[L.index(x) + 1 for x in ans3[i]] for i in range(3)]
 
-  print ans1[0], rans
   assert ans1[0] == rans
-  print ans2[1], wans
   assert ans2[1] == wans
-  print ans3[2], eans
   assert ans3[2] == eans
-  print ans, [rans, wans, eans]
   assert ans  == [rans, wans, eans]
   assert T < 4 * timeout + 0.1
 
@@ -77,7 +73,7 @@ def test_select():
     """Connect regular Python socket to Google, and send."""
     connect1(S)
     S.sendall('GET / HTTP/1.0\r\n\r\n')
-    print S.recv(1)
+    S.recv(1)
 
   def full4(S):
     """Connect I2P Python socket to duck.i2p, and send."""
-- 
GitLab