[issue17569] urllib2 urlopen truncates https pages after 32768 characters

2021-10-25 Thread Irit Katriel
Irit Katriel added the comment: Python 2.7 is no longer maintained. Please create a new issue if you are seeing this problem on 3.9+. -- nosy: +iritkatriel resolution: -> out of date stage: -> resolved status: open -> closed ___ Python tracker <

[issue17569] urllib2 urlopen truncates https pages after 32768 characters

2013-03-29 Thread J Porter
J Porter added the comment: Here is the code (security info removed) and the output. I noticed that the problem is a bit different between 2.6.5 and 2.7.3 (on one the use of authentication is different) so I've included the output for both: import urllib2 userData="Basic KEY GOES HERE"

[issue17569] urllib2 urlopen truncates https pages after 32768 characters

2013-03-28 Thread Senthil Kumaran
Senthil Kumaran added the comment: Do you have the sample server URL or test script? -- nosy: +orsenthil ___ Python tracker ___ ___ Py

[issue17569] urllib2 urlopen truncates https pages after 32768 characters

2013-03-28 Thread J Porter
New submission from J Porter: When using urllib2 to fetch page data from an https server, I found that only the first 32768 characters of the download were retrieved. Other browsers returned the full documents, so it does not appear to be a server issue. If http, rather than https is used on t