This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author berker.peksag
Recipients BreamoreBoy, benjamin.peterson, berker.peksag, brett.cannon, demian.brecht, guohua, nikratio, orsenthil, serhiy.storchaka
Date 2015-01-23.09:36:07
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1422005767.18.0.968894189759.issue23300@psf.upfronthosting.co.za>
In-reply-to
Content
+class TestServer(TestCase):

This can be a mixin.

+    def testHTTPWithConnectHostPost(self):

Post -> Port?

+        self.conn = httplib.HTTP(host=constructor_host, port=constructor_port)

or to make the test simpler,

    self.conn = httplib.HTTP()
History
Date User Action Args
2015-01-23 09:36:07berker.peksagsetrecipients: + berker.peksag, brett.cannon, orsenthil, benjamin.peterson, nikratio, BreamoreBoy, serhiy.storchaka, demian.brecht, guohua
2015-01-23 09:36:07berker.peksagsetmessageid: <1422005767.18.0.968894189759.issue23300@psf.upfronthosting.co.za>
2015-01-23 09:36:07berker.peksaglinkissue23300 messages
2015-01-23 09:36:07berker.peksagcreate