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 Nils-Hero
Recipients Nils-Hero, r.david.murray
Date 2017-06-06.18:29:26
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1496773766.18.0.856823960292.issue30580@psf.upfronthosting.co.za>
In-reply-to
Content
I tried a few online python 3 interpreters.

These give the same exception:

http://www.learnpython.org/en/Hello%2C_World%21
http://rextester.com/l/python3_online_compiler
http://ideone.com/pIMilt
http://www.tutorialspoint.com/execute_python3_online.php

And this one worked:

https://repl.it/languages/python3

the example i tried was:

from wsgiref.simple_server import make_server, demo_app
with make_server('', 8000, demo_app) as httpd:
    print("Serving HTTP on port 8000...")
    httpd.serve_forever()

My Python installation is a default x64 installation. No changes were made during installation, except installation path, which has no spaces in it. I have no third part modules installed which could interfer. I have also a Python 2.7 installed but it is not on my path.
History
Date User Action Args
2017-06-06 18:29:26Nils-Herosetrecipients: + Nils-Hero, r.david.murray
2017-06-06 18:29:26Nils-Herosetmessageid: <1496773766.18.0.856823960292.issue30580@psf.upfronthosting.co.za>
2017-06-06 18:29:26Nils-Herolinkissue30580 messages
2017-06-06 18:29:26Nils-Herocreate