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.
Created on 2004年07月11日 05:37 by tim.peters, last changed 2022年04月11日 14:56 by admin. This issue is now closed.
| Messages (2) | |||
|---|---|---|---|
| msg21483 - (view) | Author: Tim Peters (tim.peters) * (Python committer) | Date: 2004年07月11日 05:37 | |
The 2.4a1 Windows installer doesn't include the test file cfgparser.1, so test_cfgparser gets three errors in an installed Python on Windows: ========================================== ============================ FAIL: test_read_returns_file_list (__main__.ConfigParserTestCase) ------------------------------------------------------ ---------------- Traceback (most recent call last): File "lib\test\test_cfgparser.py", line 250, in test_read_returns_file_list self.assertEqual(parsed_files, [file1]) AssertionError: [] != ['cfgparser.1'] ========================================== ============================ FAIL: test_read_returns_file_list (__main__.RawConfigParserTestCase) ------------------------------------------------------ ---------------- Traceback (most recent call last): File "lib\test\test_cfgparser.py", line 250, in test_read_returns_file_list self.assertEqual(parsed_files, [file1]) AssertionError: [] != ['cfgparser.1'] ========================================== ============================ FAIL: test_read_returns_file_list (__main__.SafeConfigParserTestCase) ------------------------------------------------------ ---------------- Traceback (most recent call last): File "lib\test\test_cfgparser.py", line 250, in test_read_returns_file_list self.assertEqual(parsed_files, [file1]) AssertionError: [] != ['cfgparser.1'] ------------------------------------------------------ ---------------- Ran 39 tests in 0.031s FAILED (failures=3) I think test files for the new decimal module are missing too, although I believe you won't notice this unless you pass "-u decimal" to regrtest.py, or run test_decimal.py directly. |
|||
| msg21484 - (view) | Author: Martin v. Löwis (loewis) * (Python committer) | Date: 2004年07月15日 17:37 | |
Logged In: YES user_id=21627 This is fixed in msi.py 1.14. |
|||
| History | |||
|---|---|---|---|
| Date | User | Action | Args |
| 2022年04月11日 14:56:05 | admin | set | github: 40541 |
| 2004年07月11日 05:37:16 | tim.peters | create | |