diff options
author | Guido van Rossum <guido@python.org> | 1997-08-14 19:55:00 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1997-08-14 19:55:00 (GMT) |
commit | c4c26414c51a61be544bcd05ecca54a8f1c01054 (patch) | |
tree | 5679613babd65c5ae9dcefb42485a1e94c3620a5 /Lib/test/test_rotor.py | |
parent | 9faabb8d2304c618441d8df77cf9ff0b483e4612 (diff) | |
download | cpython-c4c26414c51a61be544bcd05ecca54a8f1c01054.zip cpython-c4c26414c51a61be544bcd05ecca54a8f1c01054.tar.gz cpython-c4c26414c51a61be544bcd05ecca54a8f1c01054.tar.bz2 |
Print `a` so encrypted text is shown in ascii, not binary.
Diffstat (limited to 'Lib/test/test_rotor.py')
-rw-r--r-- | Lib/test/test_rotor.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_rotor.py b/Lib/test/test_rotor.py index 338ea9d..99724bc 100644 --- a/Lib/test/test_rotor.py +++ b/Lib/test/test_rotor.py @@ -7,7 +7,7 @@ A = 'spam and eggs' B = 'cheese shop' a = r.encrypt(A) -print a +print `a` b = r.encryptmore(B) print b |