##// END OF EJS Templates
archive: set date to 1980 for very old zip files...
archive: set date to 1980 for very old zip files The zip file format stores the date using "MS-DOS format" which apparently means that they use 1980 as their epoch. Python's zipfile module emits deprecation warnings of this form /usr/lib/python2.6/zipfile.py:1108: DeprecationWarning: struct integer overflow masking is deprecated self.fp.write(zinfo.FileHeader()) /usr/lib/python2.6/zipfile.py:1108: DeprecationWarning: 'H' format requires 0 <= number <= 65535 self.fp.write(zinfo.FileHeader()) /home/mg/src/mercurial-crew/mercurial/archival.py:169: DeprecationWarning: struct integer overflow masking is deprecated self.z.close() /home/mg/src/mercurial-crew/mercurial/archival.py:169: DeprecationWarning: 'H' format requires 0 <= number <= 65535 self.z.close() when it is given such old timestamps. This fixes this by silently clamping the date to 1980.

File last commit:

r10917:bce47e25 stable
r12319:381f1312 stable
Show More
test-issue2137.out
12 lines | 278 B | text/plain | TextLexer
/ tests / test-issue2137.out
Greg Ward
revlog: fix lazyparser.__iter__() to return all revisions (issue2137)...
r10914 % setup
adding a
Benoit Boissinot
simplify test-issue2137, make it more portable
r10917 new tip: 553596fad57b
Greg Ward
revlog: fix lazyparser.__iter__() to return all revisions (issue2137)...
r10914
% test that new changesets are visible to repo.lookup()
Benoit Boissinot
simplify test-issue2137, make it more portable
r10917 new tip: 799ae3599e0e
changeset: 1:799ae3599e0e
Greg Ward
revlog: fix lazyparser.__iter__() to return all revisions (issue2137)...
r10914 tag: tip
Benoit Boissinot
simplify test-issue2137, make it more portable
r10917 user: test
Greg Ward
revlog: fix lazyparser.__iter__() to return all revisions (issue2137)...
r10914 date: Thu Jan 01 00:00:00 1970 +0000
summary: one more commit to demonstrate the bug