##// 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:

r9717:68a1b9d0 default
r12319:381f1312 stable
Show More
test-merge5.out
7 lines | 289 B | text/plain | TextLexer
Thomas Arendsen Hein
Make hg update more verbose by default (issue12)...
r2175 1 files updated, 0 files merged, 0 files removed, 0 files unresolved
Bryan O'Sullivan
Update tests to match new addremove chattiness.
r767 removing b
Dirkjan Ochtman
warn about new heads on commit (issue842)
r6336 created new head
Matt Mackall
update: no -C needed to switch branches without outstanding changes
r6350 % should abort
Stuart W Marks
update: allow branch crossing without -c or -C, with no uncommitted changes...
r9717 abort: crosses branches (use 'hg merge' to merge or use 'hg update -C' to discard changes)
Matt Mackall
update: no -C needed to switch branches without outstanding changes
r6350 % should succeed
Stuart W Marks
update: allow branch crossing without -c or -C, with no uncommitted changes...
r9717 1 files updated, 0 files merged, 0 files removed, 0 files unresolved