diff options
author | Guido van Rossum <guido@python.org> | 1997-08-18 13:42:28 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1997-08-18 13:42:28 (GMT) |
commit | ce320966616c6302858def177186bc7ab5eef2e1 (patch) | |
tree | c98eec1db4a9f52baf575e8f50ad6deec11aa28d | |
parent | 57e846f80384178da28eb166df7167ede4a0773c (diff) | |
download | cpython-ce320966616c6302858def177186bc7ab5eef2e1.zip cpython-ce320966616c6302858def177186bc7ab5eef2e1.tar.gz cpython-ce320966616c6302858def177186bc7ab5eef2e1.tar.bz2 |
Oops. Of course, print b should also be print `b`. :-(
-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 99724bc..a5c02aa 100644 --- a/Lib/test/test_rotor.py +++ b/Lib/test/test_rotor.py @@ -9,7 +9,7 @@ B = 'cheese shop' a = r.encrypt(A) print `a` b = r.encryptmore(B) -print b +print `b` A1 = r.decrypt(a) print A1 |