summaryrefslogtreecommitdiff
path: root/Lib/test/test_operator.py
diff options
context:
space:
mode:
authorBarry Warsaw <barry@python.org>1996-12-23 23:39:42 +0000
committerBarry Warsaw <barry@python.org>1996-12-23 23:39:42 +0000
commit49d9fd605ea94f1adcb73e843c932a7747564f12 (patch)
tree8f27621af2775001a3d2f99bc4bfbf521c37a8d8 /Lib/test/test_operator.py
parentbe6988f27909d9e03f66f1e80921e2aadf6f76b2 (diff)
downloadcpython-49d9fd605ea94f1adcb73e843c932a7747564f12.tar.gz
test_rotor.py: New test of the rotor module.
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.
Diffstat (limited to 'Lib/test/test_operator.py')
-rw-r--r--Lib/test/test_operator.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/Lib/test/test_operator.py b/Lib/test/test_operator.py
index b2dad627e2..ff4cba0576 100644
--- a/Lib/test/test_operator.py
+++ b/Lib/test/test_operator.py
@@ -2,6 +2,7 @@ import operator
import sys
def test(name, input, output, *args):
+ print 'testing:', name
f = getattr(operator, name)
params = (input,) + args
try: