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 Claudiu.Popa
Recipients Claudiu.Popa
Date 2011-08-01.13:19:33
SpamBayes Score 0.00014715649
Marked as misclassified No
Message-id <1312204774.15.0.0451791288151.issue12676@psf.upfronthosting.co.za>
In-reply-to
Content
There appears to be used a variable that is not defined in HTTPConnection.send method. The approximate line is 781. How to reproduce: 
import http.client
import urllib.parse
c = urllib.parse.urlencode({"user":"claudiu", "password":"1"})
c = http.client.HTTPConnection("192.168.71.38")
c.request("POST", "test", c) # silly, I now.

There should be raised a TypeError here, but instead the error is:
  File "C:\Python32\lib\http\client.py", line 781, in send
    or an iterable, got %r " % type(it))
NameError: global name 'it' is not defined
History
Date User Action Args
2011-08-01 13:19:34Claudiu.Popasetrecipients: + Claudiu.Popa
2011-08-01 13:19:34Claudiu.Popasetmessageid: <1312204774.15.0.0451791288151.issue12676@psf.upfronthosting.co.za>
2011-08-01 13:19:33Claudiu.Popalinkissue12676 messages
2011-08-01 13:19:33Claudiu.Popacreate