Re: About new urllib.request in python 3.1.2

2010-07-10 Thread Cameron Simpson
On 10Jul2010 09:11, pavan kumar maddali wrote: | Thank You Steve, | I am not using the urllib. Your example did: from urllib.request import urlopen response = urlopen('http://python.org/') html = response.read() | I am using the xmlrpc and http modules from the | python library. [.

Re: About new urllib.request in python 3.1.2

2010-07-10 Thread pavan kumar maddali
est of the code is just to get the result from the api regards Pavan From: Steven D'Aprano To: python-list@python.org Sent: Sat, July 10, 2010 11:35:06 AM Subject: Re: About new urllib.request in python 3.1.2 On Sat, 10 Jul 2010 07:06:47 -0700, pcchen wr

Re: About new urllib.request in python 3.1.2

2010-07-10 Thread Steven D'Aprano
On Sat, 10 Jul 2010 07:06:47 -0700, pcchen wrote: > And for the following three simple lines of code, borrowed from official > python-doc 3.1.2: > from urllib.request import urlopen response = urlopen('http://python.org/') html = response.read() > > They could cause this error: > > Fi