Message238575
| Author |
vstinner |
| Recipients |
bkabrda, ethan.furman, georg.brandl, ncoghlan, paul.moore, python-dev, sYnfo, serhiy.storchaka, vstinner, wolma |
| Date |
2015年03月19日.22:47:19 |
| SpamBayes Score |
-1.0 |
| Marked as misclassified |
Yes |
| Message-id |
<1426805239.69.0.427132689502.issue23700@psf.upfronthosting.co.za> |
| In-reply-to |
| Content |
test_csv now fails on Windows:
http://buildbot.python.org/all/builders/x86 Windows7 3.x/builds/9421/
======================================================================
ERROR: test_read_dict_fieldnames_from_file (test.test_csv.TestDictFields)
----------------------------------------------------------------------
Traceback (most recent call last):
File "D:\cygwin\home\db3l\buildarea3円.x.bolen-windows7\build\lib\test\test_csv.py", line 629, in test_read_dict_fieldnames_from_file
self.assertEqual(next(reader), {"f1": '1', "f2": '2', "f3": 'abc'})
File "D:\cygwin\home\db3l\buildarea3円.x.bolen-windows7\build\lib\csv.py", line 110, in __next__
row = next(self.reader)
File "D:\cygwin\home\db3l\buildarea3円.x.bolen-windows7\build\lib\tempfile.py", line 431, in __iter__
yield from iter(self.file)
ValueError: I/O operation on closed file. |
|