##// END OF EJS Templates
Do not use osutil.c with python 2.4 and Windows (issue1364)...
Do not use osutil.c with python 2.4 and Windows (issue1364) Windows python 2.4 os.stat() reports times including DST offset, while osutil.c reports the correct value, which makes status() systematically compare files content. This bug is fixed in python 2.5. Using osutil.py instead of osutil.c is 4x times slower on large repositories but current code is completely unusable. Given few people are likely to use python 2.4 on Windows this solution was considered a good trade-off compared to more invasive solutions trying to address the offset issue.

File last commit:

r6944:7e5f3480 default
r10521:bde1bb25 stable
Show More
test-empty
17 lines | 142 B | text/plain | TextLexer
mpm@selenic.com
Add empty repo test
r1338 #!/bin/sh
Benoit Boissinot
fix regression on empty repo cloning introduced by 0642d9d7ec80...
r6944 hg init a
cd a
mpm@selenic.com
Add empty repo test
r1338 hg log
hg grep wah
hg manifest
hg verify
Benoit Boissinot
fix regression on empty repo cloning introduced by 0642d9d7ec80...
r6944 ls .hg
ls .hg/store
cd ..
hg clone a b
cd b
hg verify
ls .hg
ls .hg/store