diff options
author | Andrew M. Kuchling <amk@amk.ca> | 2004-08-31 13:29:03 (GMT) |
---|---|---|
committer | Andrew M. Kuchling <amk@amk.ca> | 2004-08-31 13:29:03 (GMT) |
commit | 163f8000951ef3ef779dfd0001184dc247ac5f45 (patch) | |
tree | abecdd40845cd3f499e097e3ecad2f42e9a17b27 /Lib/test/test_rotor.py | |
parent | 595ac8a6fc2239a121ae769518fffc86473ed005 (diff) | |
download | cpython-163f8000951ef3ef779dfd0001184dc247ac5f45.zip cpython-163f8000951ef3ef779dfd0001184dc247ac5f45.tar.gz cpython-163f8000951ef3ef779dfd0001184dc247ac5f45.tar.bz2 |
Remove tests for mpz, rotor, xreadlines
Diffstat (limited to 'Lib/test/test_rotor.py')
-rw-r--r-- | Lib/test/test_rotor.py | 34 |
1 files changed, 0 insertions, 34 deletions
diff --git a/Lib/test/test_rotor.py b/Lib/test/test_rotor.py deleted file mode 100644 index 16a7dcd..0000000 --- a/Lib/test/test_rotor.py +++ /dev/null @@ -1,34 +0,0 @@ -import warnings - -warnings.filterwarnings("ignore", - category=DeprecationWarning, - message='.*is deprecated', module=__name__) - -import rotor - -r = rotor.newrotor("you'll never guess this") -r = rotor.newrotor("you'll never guess this", 12) - -A = 'spam and eggs' -B = 'cheese shop' - -a = r.encrypt(A) -print repr(a) -b = r.encryptmore(B) -print repr(b) - -A1 = r.decrypt(a) -print A1 -if A1 != A: - print 'decrypt failed' - -B1 = r.decryptmore(b) -print B1 -if B1 != B: - print 'decryptmore failed' - -try: - r.setkey() -except TypeError: - pass -r.setkey('you guessed it!') |