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 ncoghlan
Recipients CuriousLearner, ncoghlan, paul.moore, serhiy.storchaka, steve.dower, terry.reedy, tim.golden, zach.ware
Date 2017-08-18.11:00:14
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1503054015.22.0.243867649868.issue30721@psf.upfronthosting.co.za>
In-reply-to
Content
Checking the merged implementation locally, I belatedly noticed that we forgot the trailing question mark on the question:

```
>>> import sys
>>> print >> sys.stderr
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
TypeError: unsupported operand type(s) for >>: 'builtin_function_or_method' and '_io.TextIOWrapper'. Did you mean "print(<message>, file=<output_stream>)"
```

So putting this back to "needs patch" (no NEWS entry needed, just the missing question marks in the patch and the tests).
History
Date User Action Args
2017-08-18 11:00:15ncoghlansetrecipients: + ncoghlan, terry.reedy, paul.moore, tim.golden, zach.ware, serhiy.storchaka, steve.dower, CuriousLearner
2017-08-18 11:00:15ncoghlansetmessageid: <1503054015.22.0.243867649868.issue30721@psf.upfronthosting.co.za>
2017-08-18 11:00:15ncoghlanlinkissue30721 messages
2017-08-18 11:00:14ncoghlancreate