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 martin.panter
Recipients abarry, martin.panter, python-dev, serhiy.storchaka, vstinner
Date 2016-04-24.06:22:13
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1461478933.6.0.447080142935.issue26801@psf.upfronthosting.co.za>
In-reply-to
Content
How about:

try:
    size = os.get_terminal_size(sys.__stdout__.fileno())
except (AttributeError, ValueError, OSError):
    # stdout is None, closed, detached, or not a terminal, or
    # os.get_terminal_size() is unsupported
    size = os.terminal_size(fallback)
History
Date User Action Args
2016-04-24 06:22:13martin.pantersetrecipients: + martin.panter, vstinner, python-dev, serhiy.storchaka, abarry
2016-04-24 06:22:13martin.pantersetmessageid: <1461478933.6.0.447080142935.issue26801@psf.upfronthosting.co.za>
2016-04-24 06:22:13martin.panterlinkissue26801 messages
2016-04-24 06:22:13martin.pantercreate