Print `a` so encrypted text is shown in ascii, not binary.

This commit is contained in:
Guido van Rossum 1997-08-14 19:55:00 +00:00
parent 9faabb8d23
commit c4c26414c5
2 changed files with 2 additions and 2 deletions

View File

@ -1,5 +1,5 @@
test_rotor test_rotor
オq瀬鍼Tムワ゚ '\265q\220\243\350IT\321\007\332\035\334\337'
>k(Š,<2C>ËŸâ >k(Š,<2C>ËŸâ
spam and eggs spam and eggs
cheese shop cheese shop

View File

@ -7,7 +7,7 @@ A = 'spam and eggs'
B = 'cheese shop' B = 'cheese shop'
a = r.encrypt(A) a = r.encrypt(A)
print a print `a`
b = r.encryptmore(B) b = r.encryptmore(B)
print b print b