tests/test-cat.t
author Thomas Arendsen Hein <thomas@intevation.de>
Sun, 16 Oct 2011 11:12:59 +0200
branchstable
changeset 15278 2ed335669e18
parent 12316 4134686b83e1
child 17371 1310489eb5d6
permissions -rw-r--r--
commands: use separate try/except and try/finally as needed for python2.4 62dc0e7ab092 introduced a try/except/finally block, which breaks compatibility with python2.4

  $ hg init
  $ echo 0 > a
  $ echo 0 > b
  $ hg ci -A -m m
  adding a
  adding b
  $ hg rm a
  $ hg cat a
  0
  $ hg cat --decode a # more tests in test-encode
  0
  $ echo 1 > b
  $ hg ci -m m
  $ echo 2 > b
  $ hg cat -r 0 a
  0
  $ hg cat -r 0 b
  0
  $ hg cat -r 1 a
  a: no such file in rev 7040230c159c
  [1]
  $ hg cat -r 1 b
  1