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 collinwinter
Recipients collinwinter
Date 2009-06-16.17:35:29
SpamBayes Score 1.3554442e-06
Marked as misclassified No
Message-id <1245173731.34.0.991251966726.issue6293@psf.upfronthosting.co.za>
In-reply-to
Content
This patch makes regrtest.py echo back the contents of sys.flags at the 
beginning of a test run. Unladen Swallow has found this useful for 
verifying that the regrtest.py settings in the Makefile and in our 
Buildbot configs are interacting as expected.

Example output:
$ PYTHONOPTIMIZE=2 ./python.exe -OO Lib/test/regrtest.py
Testing with flags: sys.flags(debug=0, py3k_warning=0, 
division_warning=0, division_new=0, inspect=0, interactive=0, 
optimize=2, dont_write_bytecode=0, no_user_site=0, no_site=0, 
ignore_environment=0, tabcheck=0, verbose=0, unicode=0, bytes_warning=0)
test_grammar
test_opcodes
test_dict
test_builtin
test_exceptions
test_types
[snip]
$
History
Date User Action Args
2009-06-16 17:35:31collinwintersetrecipients: + collinwinter
2009-06-16 17:35:31collinwintersetmessageid: <1245173731.34.0.991251966726.issue6293@psf.upfronthosting.co.za>
2009-06-16 17:35:30collinwinterlinkissue6293 messages
2009-06-16 17:35:29collinwintercreate