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

r6204:f8a86ea7 default
r12319:381f1312 stable
Show More
test-bad-extension
13 lines | 377 B | text/plain | TextLexer
/ tests / test-bad-extension
Alexis S. L. Carvalho
load extensions only after the ui object has been completely initialized...
r3014 #!/bin/sh
Alexis S. L. Carvalho
test-bad-extension: avoid printing the file name...
r4139 echo 'raise Exception("bit bucket overflow")' > badext.py
Alexis S. L. Carvalho
load extensions only after the ui object has been completely initialized...
r3014 abspath=`pwd`/badext.py
echo '[extensions]' >> $HGRCPATH
Thomas Arendsen Hein
Improved error message for extensions overriding commands (with test):...
r3990 echo "gpg =" >> $HGRCPATH
echo "hgext.gpg =" >> $HGRCPATH
Alexis S. L. Carvalho
load extensions only after the ui object has been completely initialized...
r3014 echo "badext = $abspath" >> $HGRCPATH
Jesse Glick
When failing to load an extension, show where Hg tried to load it from.
r6204 echo "badext2 =" >> $HGRCPATH
Alexis S. L. Carvalho
load extensions only after the ui object has been completely initialized...
r3014
Jesse Glick
When failing to load an extension, show where Hg tried to load it from.
r6204 hg -q help help 2>&1 | python -c \
"import sys; sys.stdout.write(sys.stdin.read().replace('$abspath', '.../badext.py'))"