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 zach.ware
Recipients jecanne, paul.moore, steve.dower, tim.golden, tjguk, vstinner, zach.ware
Date 2016-03-10.17:23:44
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1457630625.25.0.596778504974.issue26531@psf.upfronthosting.co.za>
In-reply-to
Content
I can reproduce on Windows 10 with Pythons 2.7.11, 3.4.4, and 3.5.1 with the attached script.  Examples:

E:\>ver

Microsoft Windows [Version 10.0.10586]

E:\>py ccbug.py
2.7.11 (v2.7.11:6d1b6a68f775, Dec  5 2015, 20:32:19) [MSC v.1500 32 bit (Intel)]
Traceback (most recent call last):
  File "ccbug.py", line 12, in <module>
    data = input()


E:\>py -3.4 ccbug.py
3.4.4 (v3.4.4:737efcadf5a6, Dec 20 2015, 19:28:18) [MSC v.1600 32 bit (Intel)]
Traceback (most recent call last):
  File "ccbug.py", line 12, in <module>

E:\>py -3.5 ccbug.py
3.5.1 (v3.5.1:37a07cee5969, Dec  6 2015, 01:54:25) [MSC v.1900 64 bit (AMD64)]
Traceback (most recent call last):
  File "ccbug.py", line 12, in <module>
History
Date User Action Args
2016-03-10 17:23:45zach.waresetrecipients: + zach.ware, paul.moore, vstinner, tim.golden, steve.dower, tjguk, jecanne
2016-03-10 17:23:45zach.waresetmessageid: <1457630625.25.0.596778504974.issue26531@psf.upfronthosting.co.za>
2016-03-10 17:23:45zach.warelinkissue26531 messages
2016-03-10 17:23:44zach.warecreate