##// END OF EJS Templates
tests: b prefixes on some inline python in test-convert-cvs.t...
Augie Fackler -
r37907:cf76642c default
parent child Browse files
Show More
@@ -522,8 +522,8 b' Commit messages of version 1.2 - 1.4 use'
522
522
523 $ mkdir -p cvsrepo/transcoding
523 $ mkdir -p cvsrepo/transcoding
524 $ python <<EOF
524 $ python <<EOF
525 > fp = open('cvsrepo/transcoding/file,v', 'w')
525 > fp = open('cvsrepo/transcoding/file,v', 'wb')
526 > fp.write(('''
526 > fp.write((b'''
527 > head 1.4;
527 > head 1.4;
528 > access;
528 > access;
529 > symbols
529 > symbols
@@ -570,7 +570,7 b' Commit messages of version 1.2 - 1.4 use'
570 >
570 >
571 > 1.4
571 > 1.4
572 > log
572 > log
573 > @''' + u'\u3042'.encode('cp932') + ''' (cp932)
573 > @''' + u'\u3042'.encode('cp932') + b''' (cp932)
574 > @
574 > @
575 > text
575 > text
576 > @1
576 > @1
@@ -582,7 +582,7 b' Commit messages of version 1.2 - 1.4 use'
582 >
582 >
583 > 1.3
583 > 1.3
584 > log
584 > log
585 > @''' + u'\u3042'.encode('euc-jp') + ''' (euc-jp)
585 > @''' + u'\u3042'.encode('euc-jp') + b''' (euc-jp)
586 > @
586 > @
587 > text
587 > text
588 > @d4 1
588 > @d4 1
@@ -591,7 +591,7 b' Commit messages of version 1.2 - 1.4 use'
591 >
591 >
592 > 1.2
592 > 1.2
593 > log
593 > log
594 > @''' + u'\u3042'.encode('utf-8') + ''' (utf-8)
594 > @''' + u'\u3042'.encode('utf-8') + b''' (utf-8)
595 > @
595 > @
596 > text
596 > text
597 > @d3 1
597 > @d3 1
General Comments 0
You need to be logged in to leave comments. Login now