[issue10983] Errors in http.client.HTTPConnection class (python3)

2014-04-14 Thread Nikolaus Rath

Nikolaus Rath added the comment:

This issue can be closed. The testcases have been added in 39ee3286d187.

--

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue10983
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue10983] Errors in http.client.HTTPConnection class (python3)

2014-04-14 Thread Senthil Kumaran

Senthil Kumaran added the comment:

Yes, they indeed are. Thank you!

--
resolution:  - fixed
stage:  - committed/rejected
status: open - closed

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue10983
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue10983] Errors in http.client.HTTPConnection class (python3)

2014-01-07 Thread Nikolaus Rath

Nikolaus Rath added the comment:

There were actually a few additional bugs. I fixed them, and added testcases, 
in issue 7776.

--
nosy: +Nikratio

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue10983
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue10983] Errors in http.client.HTTPConnection class (python3)

2011-01-24 Thread David Stanek

Changes by David Stanek dsta...@dstanek.com:


--
nosy: +dstanek

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue10983
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue10983] Errors in http.client.HTTPConnection class (python3)

2011-01-22 Thread nooB

New submission from nooB nsharish@gmail.com:

In python 3.x http.client.HTTPConnection class, I saw few problems.

1) `_tunnel_headers` not initialized in the __init__ method. This causes 
`set_tunnel` method to raise `AttributeError` when called without `headers` 
keyword argument.

2) In `_tunnel` method, `self._tunnel_headers.iteritems()` has been used 
instead of `self._tunnel_headers.items()`, which caused AttributeError.

3) In `_tunnel` method, the CONNECT request is incomplete and hangs.
self.send(b'\r\n') is missing after sending the headers.

--
messages: 126857
nosy: nooB
priority: normal
severity: normal
status: open
title: Errors in http.client.HTTPConnection class (python3)
versions: Python 3.1, Python 3.2, Python 3.3

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue10983
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue10983] Errors in http.client.HTTPConnection class (python3)

2011-01-22 Thread Antoine Pitrou

Changes by Antoine Pitrou pit...@free.fr:


--
components: +Library (Lib)
nosy: +orsenthil
type:  - behavior

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue10983
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue10983] Errors in http.client.HTTPConnection class (python3)

2011-01-22 Thread nooB

Changes by nooB nsharish@gmail.com:


--
versions:  -Python 3.3

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue10983
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue10983] Errors in http.client.HTTPConnection class (python3)

2011-01-22 Thread Georg Brandl

Georg Brandl ge...@python.org added the comment:

All your points make sense and I fixed them in r88144.

Leaving this open for somebody to add a unittest that actually exercises these 
tunnel features.

--
nosy: +georg.brandl

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue10983
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com