##// 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 523 $ mkdir -p cvsrepo/transcoding
524 524 $ python <<EOF
525 > fp = open('cvsrepo/transcoding/file,v', 'w')
526 > fp.write(('''
525 > fp = open('cvsrepo/transcoding/file,v', 'wb')
526 > fp.write((b'''
527 527 > head 1.4;
528 528 > access;
529 529 > symbols
@@ -570,7 +570,7 b' Commit messages of version 1.2 - 1.4 use'
570 570 >
571 571 > 1.4
572 572 > log
573 > @''' + u'\u3042'.encode('cp932') + ''' (cp932)
573 > @''' + u'\u3042'.encode('cp932') + b''' (cp932)
574 574 > @
575 575 > text
576 576 > @1
@@ -582,7 +582,7 b' Commit messages of version 1.2 - 1.4 use'
582 582 >
583 583 > 1.3
584 584 > log
585 > @''' + u'\u3042'.encode('euc-jp') + ''' (euc-jp)
585 > @''' + u'\u3042'.encode('euc-jp') + b''' (euc-jp)
586 586 > @
587 587 > text
588 588 > @d4 1
@@ -591,7 +591,7 b' Commit messages of version 1.2 - 1.4 use'
591 591 >
592 592 > 1.2
593 593 > log
594 > @''' + u'\u3042'.encode('utf-8') + ''' (utf-8)
594 > @''' + u'\u3042'.encode('utf-8') + b''' (utf-8)
595 595 > @
596 596 > text
597 597 > @d3 1
General Comments 0
You need to be logged in to leave comments. Login now