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 ncoghlan, serhiy.storchaka, skrah
Date 2013-10-26.17:51:34
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1382809894.35.0.442101801072.issue19412@psf.upfronthosting.co.za>
In-reply-to
Content
Alternatively, if the affected tests should also be skipped under -OO, then I think changing the current definition of HAVE_DOCSTRINGS would also work:

MISSING_C_DOCSTRINGS = (check_impl_detail() and
                        sys.platform != 'win32' and
                        not sysconfig.get_config_var('WITH_DOC_STRINGS'))

HAVE_DOCSTRINGS = _check_docstrings.__doc__ is not None and not MISSING_C_DOCSTRINGS
History
Date User Action Args
2013-10-26 17:51:34ncoghlansetrecipients: + ncoghlan, skrah, serhiy.storchaka
2013-10-26 17:51:34ncoghlansetmessageid: <1382809894.35.0.442101801072.issue19412@psf.upfronthosting.co.za>
2013-10-26 17:51:34ncoghlanlinkissue19412 messages
2013-10-26 17:51:34ncoghlancreate