##// END OF EJS Templates
global: mass rewrite to use modern exception syntax...
global: mass rewrite to use modern exception syntax Python 2.6 introduced the "except type as instance" syntax, replacing the "except type, instance" syntax that came before. Python 3 dropped support for the latter syntax. Since we no longer support Python 2.4 or 2.5, we have no need to continue supporting the "except type, instance". This patch mass rewrites the exception syntax to be Python 2.6+ and Python 3 compatible. This patch was produced by running `2to3 -f except -w -n .`.

File last commit:

r22046:7a9cbb31 default
r25660:328739ea default
Show More
test-revert-flags.t
23 lines | 312 B | text/troff | Tads3Lexer
/ tests / test-revert-flags.t
Matt Mackall
tests: replace exit 80 with #require
r22046 #require execbit
Nicolas Dumazet
tests: unify test-revert-flags
r12110
$ hg init repo
$ cd repo
$ echo foo > foo
$ chmod 644 foo
$ hg ci -qAm '644'
$ chmod 755 foo
$ hg ci -qAm '755'
reverting to rev 0
$ hg revert -a -r 0
reverting foo
$ hg st
M foo
$ hg diff --git
diff --git a/foo b/foo
old mode 100755
new mode 100644
Mads Kiilerich
tests: add missing trailing 'cd ..'...
r16913
$ cd ..