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, ezio.melotti, vstinner
Date 2015-11-22.08:58:57
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1448182737.98.0.235138945354.issue25695@psf.upfronthosting.co.za>
In-reply-to
Content
test___all__ and test_support alter execution environment.
Problem seems to be present only in Python 3.6.

$ python3.5 -m test test___all__ test_support
[1/2] test___all__
[2/2] test_support
All 2 tests OK.
$ python3.6 -m test test___all__ test_support
[1/2] test___all__
Warning -- files was modified by test___all__
[2/2] test_support
Warning -- files was modified by test_support
2 tests altered the execution environment:
    test___all__ test_support


When running these test files separately, problem is only present for test___all__:

$ python3.5 -m test test___all__
[1/1] test___all__
1 test OK.
$ python3.6 -m test test___all__
[1/1] test___all__
Warning -- files was modified by test___all__
1 test altered the execution environment:
    test___all__
$ python3.5 -m test test_support
[1/1] test_support
1 test OK.
$ python3.6 -m test test_support
[1/1] test_support
1 test OK.
History
Date User Action Args
2015-11-22 08:58:58Arfreversetrecipients: + Arfrever, vstinner, ezio.melotti
2015-11-22 08:58:57Arfreversetmessageid: <1448182737.98.0.235138945354.issue25695@psf.upfronthosting.co.za>
2015-11-22 08:58:57Arfreverlinkissue25695 messages
2015-11-22 08:58:57Arfrevercreate