Message221318
| 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 |
|