summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_httplib.py
diff options
context:
space:
mode:
authorSenthil Kumaran <orsenthil@gmail.com>2010-10-04 05:42:58 (GMT)
committerSenthil Kumaran <orsenthil@gmail.com>2010-10-04 05:42:58 (GMT)
commitf580adee279d0c7952b5d85cf5ca6497260d2635 (patch)
treef45d40c0d4e78e05619342b566ce45f5535a1cc6 /Lib/test/test_httplib.py
parente0941c5bd259d15be48a27cf31d9df6f194634f5 (diff)
downloadcpython-f580adee279d0c7952b5d85cf5ca6497260d2635.zip
cpython-f580adee279d0c7952b5d85cf5ca6497260d2635.tar.gz
cpython-f580adee279d0c7952b5d85cf5ca6497260d2635.tar.bz2
Remove the debugging print line from the test.
Diffstat (limited to 'Lib/test/test_httplib.py')
-rw-r--r--Lib/test/test_httplib.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/Lib/test/test_httplib.py b/Lib/test/test_httplib.py
index 5a6422d..ab2a3e6 100644
--- a/Lib/test/test_httplib.py
+++ b/Lib/test/test_httplib.py
@@ -95,7 +95,6 @@ class HeaderTests(TestCase):
conn.sock = FakeSocket(None)
conn.putrequest('GET','/')
conn.putheader('Content-length', 42)
- print(conn._buffer)
self.assertTrue(b'Content-length: 42' in conn._buffer)