Closes #26987: Merge with 3.5

This commit is contained in:
Zachary Ware 2016-05-09 14:50:36 -05:00
commit e7041fa215
1 changed files with 1 additions and 1 deletions

View File

@ -923,7 +923,7 @@ class Thread:
# self.
if _sys and _sys.stderr is not None:
print("Exception in thread %s:\n%s" %
(self.name, _format_exc()), file=self._stderr)
(self.name, _format_exc()), file=_sys.stderr)
elif self._stderr is not None:
# Do the best job possible w/o a huge amt. of code to
# approximate a traceback (code ideas from