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 Arfrever
Recipients Arfrever, serhiy.storchaka
Date 2014-02-06.21:55:17
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1391723717.25.0.167441884978.issue20535@psf.upfronthosting.co.za>
In-reply-to
Content
Tools/scripts/run_tests.py contains:

def main(regrtest_args):
    args = [sys.executable,
            '-W', 'default',      # Warnings set to 'default'
            '-bb',                # Warnings about bytes/bytearray
            '-E',                 # Ignore environment variables
            ]


As described in issues #20355 and #20361, -bb fails to enable BytesWarning errors.

I suggest to include a small workaround, which will be deleted in Python 3.5. I attach patch.
History
Date User Action Args
2014-02-06 21:55:17Arfreversetrecipients: + Arfrever, serhiy.storchaka
2014-02-06 21:55:17Arfreversetmessageid: <1391723717.25.0.167441884978.issue20535@psf.upfronthosting.co.za>
2014-02-06 21:55:17Arfreverlinkissue20535 messages
2014-02-06 21:55:17Arfrevercreate