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 BreamoreBoy
Recipients BreamoreBoy, dualbus, ezio.melotti, karlcow, orsenthil, terry.reedy, tshepang
Date 2014-06-22.21:58:52
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1403474333.07.0.453150640155.issue15851@psf.upfronthosting.co.za>
In-reply-to
Content
c:\cpython\PCbuild>python_d.exe -V
Python 3.5.0a0

c:\cpython\PCbuild>type C:\Users\Mark\MyPython\mytest.py
#!/usr/bin/env python3
# -*- coding: latin-1 -*-

import urllib.request
opener = urllib.request.build_opener()
opener.addheaders = [('User-agent', 'Python-urllib')]
fobj = opener.open('http://en.wikipedia.org/robots.txt')
print('Finished, no traceback here')

c:\cpython\PCbuild>python_d.exe C:\Users\Mark\MyPython\mytest.py
Finished, no traceback here
History
Date User Action Args
2014-06-22 21:58:53BreamoreBoysetrecipients: + BreamoreBoy, terry.reedy, orsenthil, ezio.melotti, karlcow, tshepang, dualbus
2014-06-22 21:58:53BreamoreBoysetmessageid: <1403474333.07.0.453150640155.issue15851@psf.upfronthosting.co.za>
2014-06-22 21:58:53BreamoreBoylinkissue15851 messages
2014-06-22 21:58:52BreamoreBoycreate