summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_rotor.py
Commit message (Collapse)AuthorAgeFilesLines
* Update the code to better reflect recommended style:Fred Drake2000-12-121-2/+2
| | | | | Use != instead of <> since <> is documented as "obsolescent". Use "is" and "is not" when comparing with None or type objects.
* Oops. Of course, print b should also be print `b`. :-(Guido van Rossum1997-08-181-1/+1
|
* Print `a` so encrypted text is shown in ascii, not binary.Guido van Rossum1997-08-141-1/+1
|
* <rotorobj>.setkey() now requires exactly one argumentBarry Warsaw1997-01-021-1/+4
|
* test_rotor.py: New test of the rotor module.Barry Warsaw1996-12-231-0/+25
test_*: converted to the new test harness. GvR note! test_signal.py works interatively (i.e. when verbose=1) but does not work inside the test harness. It must be a timing issue, but I haven't figured it out yet.