Message346814
| Author |
vstinner |
| Recipients |
Elvis.Pranskevichus, benjamin.peterson, doko, eschwartz, mcepl, miss-islington, serhiy.storchaka, thehesiod, vstinner, yan12125 |
| Date |
2019年06月28日.09:25:54 |
| SpamBayes Score |
-1.0 |
| Marked as misclassified |
Yes |
| Message-id |
<1561713954.49.0.493724169751.issue34022@roundup.psfhosted.org> |
| In-reply-to |
| Content |
> With this change, only 3 tests fail on 3.7, and all these 3 fail because of zipimport: test_cmd_line_script, test_multiprocessing_main_handling and test_runpy.
These tests were fixed by:
commit a6e956bcb0edbfe7f18af9be2215a5326ea6bf05
Author: Elvis Pranskevichus <elvis@magic.io>
Date: Wed Nov 7 13:34:59 2018 -0500
bpo-34726: Fix handling of hash-based pycs in zipimport. (GH-10327)
Current support for hash-based bytecode files in `zipimport` is rather
sparse, which leads to test failures when the test suite is ran with
the ``SOURCE_DATE_EPOCH`` environment variable set.
This teaches zipimport to handle hash-based pycs properly. |
|