[issue6090] zipfile DeprecationWarning Python in 2.6, failure in 2.7

2010-04-13 Thread Mark Dickinson
Mark Dickinson added the comment: [Martin] > I think the error message could be better, though; it should probably be a > ValueError. Do you mean a ValueError at the level of the struct module, or the zipfile module. I'd quite like to change all the exceptions raised by the struct module to

[issue6090] zipfile DeprecationWarning Python in 2.6, failure in 2.7

2010-04-07 Thread Martin v . Löwis
Martin v. Löwis added the comment: This is not a bug in the code, but in the application. You are passing a date before 1980; this is not supported in zipfiles. Try passing 1980 instead of 1. I think the error message could be better, though; it should probably be a ValueError. Reducing the

[issue6090] zipfile DeprecationWarning Python in 2.6, failure in 2.7

2010-04-06 Thread Antoine Pitrou
Changes by Antoine Pitrou : -- priority: normal -> critical ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http

[issue6090] zipfile DeprecationWarning Python in 2.6, failure in 2.7

2010-04-06 Thread R. David Murray
R. David Murray added the comment: Making the stage test needed, since we need to get the test into the test suite as a unit test. -- nosy: +r.david.murray stage: needs patch -> test needed title: zipfile DeprecationWarning Python 2.5/2.6 -> zipfile DeprecationWarning Python in 2.6, f