This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author terry.reedy
Recipients Scott.Wimer, jcea, terry.reedy
Date 2011-05-28.20:08:16
SpamBayes Score 0.012678268
Marked as misclassified No
Message-id <1306613297.3.0.0774139961413.issue12144@psf.upfronthosting.co.za>
In-reply-to
Content
Exceptions with traceback are ordinary behavior issues. 'Crash' means segfault or equivalent on Windows. And Jesus is correct.

In general, include system with reports.
With 3.2.0 IDLE on Winxp, adjusted 3.x code

import urllib.request as ur, http.cookiejar as ck
cookie_jar = ck.CookieJar()
request = ur.Request('http://gdyn.cnn.com/1.1/1.gif?1301540335193')
conn = ur.urlopen(request)
cookie_jar.make_cookies(conn, request)

produces essentially same traceback ending in AttributeError.
I did not try the patch.
History
Date User Action Args
2011-05-28 20:08:17terry.reedysetrecipients: + terry.reedy, jcea, Scott.Wimer
2011-05-28 20:08:17terry.reedysetmessageid: <1306613297.3.0.0774139961413.issue12144@psf.upfronthosting.co.za>
2011-05-28 20:08:16terry.reedylinkissue12144 messages
2011-05-28 20:08:16terry.reedycreate