summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
authorSenthil Kumaran <senthil@uthcode.com>2012-10-11 07:11:26 (GMT)
committerSenthil Kumaran <senthil@uthcode.com>2012-10-11 07:11:26 (GMT)
commit24dfdb69ca5721d3e0de5686e79ae620abfa6db8 (patch)
tree2b6199dcd2e2d4cda6b4c1c2d02ed90c4c9af947 /Lib
parent81523a6b09fc03ce330215dad59b8ce2b073bb76 (diff)
downloadcpython-24dfdb69ca5721d3e0de5686e79ae620abfa6db8.zip
cpython-24dfdb69ca5721d3e0de5686e79ae620abfa6db8.tar.gz
cpython-24dfdb69ca5721d3e0de5686e79ae620abfa6db8.tar.bz2
code smell. remove pdb
Diffstat (limited to 'Lib')
-rw-r--r--Lib/test/test_httpservers.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/Lib/test/test_httpservers.py b/Lib/test/test_httpservers.py
index 64640f5..c5db620 100644
--- a/Lib/test/test_httpservers.py
+++ b/Lib/test/test_httpservers.py
@@ -220,7 +220,6 @@ class BaseHTTPServerTestCase(BaseTestCase):
res = self.con.getresponse()
self.assertEqual(res.status, 404)
data = res.read()
- import pdb; pdb.set_trace()
self.assertEqual(int(res.getheader('Content-Length')), len(data))