Merge with default stable
authorChristian Ebert <blacktrash@gmx.net>
Thu, 24 Nov 2011 06:42:48 +0000
branchstable
changeset 1030 b2dd573fd8ca
parent 1027 f8c2547c8f16 (current diff)
parent 1029 ab16e060541e (diff)
child 1031 b914fc162545
Merge with default
--- a/tests/test-keyword.t	Mon Nov 21 00:39:32 2011 +0100
+++ b/tests/test-keyword.t	Thu Nov 24 06:42:48 2011 +0000
@@ -309,8 +309,10 @@
 
 record chunk
 
-  $ python -c \
-  > 'l=open("a").readlines();l.insert(1,"foo\n");l.append("bar\n");open("a","w").writelines(l);'
+  >>> lines = open('a').readlines()
+  >>> lines.insert(1, 'foo\n')
+  >>> lines.append('bar\n')
+  >>> open('a', 'w').writelines(lines)
   $ hg record -d '1 10' -m rectest a<<EOF
   > y
   > y
@@ -809,8 +811,9 @@
   
 Imported patch should not be rejected
 
-  $ python -c \
-  > 'import re; s=re.sub("(Id.*)","\\1 rejecttest",open("a").read()); open("a","wb").write(s);'
+  >>> import re
+  >>> text = re.sub(r'(Id.*)', r'\1 rejecttest', open('a').read())
+  >>> open('a', 'wb').write(text)
   $ hg --debug commit -m'rejects?' -d '3 0' -u 'User Name <user@example.com>'
   a
   overwriting a expanding keywords