[Python-checkins] cpython: code smell. remove pdb

senthil.kumaran python-checkins at python.org
Thu Oct 11 09:11:32 CEST 2012


http://hg.python.org/cpython/rev/ad51ed93377c
changeset:   79666:ad51ed93377c
user:        Senthil Kumaran <senthil at uthcode.com>
date:        Thu Oct 11 00:11:26 2012 -0700
summary:
  code smell. remove pdb

files:
  Lib/test/test_httpservers.py |  1 -
  1 files changed, 0 insertions(+), 1 deletions(-)


diff --git a/Lib/test/test_httpservers.py b/Lib/test/test_httpservers.py
--- a/Lib/test/test_httpservers.py
+++ b/Lib/test/test_httpservers.py
@@ -220,7 +220,6 @@
         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))
 
 

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list