[issue13208] Problems with urllib on windows

2012-05-24 Thread Steve Holden
Steve Holden added the comment: Oops, sorry, meant to close this issue. Hope that's OK. -- status: open -> closed ___ Python tracker ___

[issue13208] Problems with urllib on windows

2012-05-24 Thread Steve Holden
Steve Holden added the comment: I have just tested this against the 2.7.1 release on Windows 7 and it runs fine. I suspect there may have been some transient error with the reporter's system or network, but if this still fails for him then reopening will be appropriate with more information a

Re: [issue13208] Problems with urllib on windows

2011-10-27 Thread Senthil Kumaran
The code is pretty straight forward and works on Linux. Is the problem with the download? If you open the json file, is it a valid one? ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-

[issue13208] Problems with urllib on windows

2011-10-18 Thread Deepak Dodo
Deepak Dodo added the comment: The log file is also attached. This error is because the entire content of the webpage has not been read. -- Added file: http://bugs.python.org/file23451/error.log ___ Python tracker

[issue13208] Problems with urllib on windows

2011-10-18 Thread Deepak Dodo
Deepak Dodo added the comment: This is the source code I am using. Even if I use any module other than urllib to read the contents, its not reading the entire contents of the webpage. This happens only on Windows. -- Added file: http://bugs.python.org/file23450/tester.py

[issue13208] Problems with urllib on windows

2011-10-18 Thread Martin v . Löwis
Martin v. Löwis added the comment: Can you please provide a test case? What exact source code you are using, and what exact result are you getting? Attach those pieces as files. -- nosy: +loewis ___ Python tracker

[issue13208] Problems with urllib on windows

2011-10-18 Thread Deepak Dodo
New submission from Deepak Dodo : When I try to read the contents of the webpage: http://www.ai-class.com/course/json/filter/QuizQuestion using urllib.read, it doesn't read the entire content. This behavior is only seen on windows and the same operation works fine on linux machines. -