[issue12676] Bug in http.client

2011-08-02 Thread Senthil Kumaran
Senthil Kumaran added the comment: Thanks for the bug report, Popa Claudiu and Patch Santoso Wijaya. Ouch, pretty ugly bug - shows the code lacked test coverage. -- ___ Python tracker

[issue12676] Bug in http.client

2011-08-02 Thread Roundup Robot
Roundup Robot added the comment: New changeset c099ba0a278e by Senthil Kumaran in branch 'default': Fix closes Issue12676 - Invalid identifier used in TypeError message in http.client. http://hg.python.org/cpython/rev/c099ba0a278e -- ___ Python trac

[issue12676] Bug in http.client

2011-08-02 Thread Roundup Robot
Roundup Robot added the comment: New changeset 1013c9fbd83c by Senthil Kumaran in branch '3.2': Fix closes Issue12676 - Invalid identifier used in TypeError message in http.client. http://hg.python.org/cpython/rev/1013c9fbd83c -- nosy: +python-dev resolution: -> fixed stage: needs pat

[issue12676] Bug in http.client

2011-08-01 Thread Santoso Wijaya
Changes by Santoso Wijaya : -- keywords: +patch Added file: http://bugs.python.org/file22821/issue12676_py33.patch ___ Python tracker ___

[issue12676] Bug in http.client

2011-08-01 Thread Santoso Wijaya
Changes by Santoso Wijaya : -- nosy: +santa4nt ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.pyth

[issue12676] Bug in http.client

2011-08-01 Thread Santoso Wijaya
Changes by Santoso Wijaya : -- type: -> behavior ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.p

[issue12676] Bug in http.client

2011-08-01 Thread Éric Araujo
Éric Araujo added the comment: It looks like “it” should be “data”. -- assignee: -> orsenthil keywords: +easy nosy: +eric.araujo, orsenthil stage: -> needs patch versions: +Python 2.7, Python 3.3 ___ Python tracker

[issue12676] Bug in http.client

2011-08-01 Thread Popa Claudiu
New submission from Popa Claudiu : 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.HTTPConn