summaryrefslogtreecommitdiffstats
path: root/Lib/test/output
diff options
context:
space:
mode:
authorCollin Winter <collinw@gmail.com>2007-03-12 15:57:19 (GMT)
committerCollin Winter <collinw@gmail.com>2007-03-12 15:57:19 (GMT)
commitf567ca3e1ae851ea6e7418da3df47e034841a08d (patch)
tree62a59ed8a8fca012efe1a4b4f67031452fd3ec81 /Lib/test/output
parent7b9c555520436b8bd1805202e7b0d1329f05b321 (diff)
downloadcpython-f567ca3e1ae851ea6e7418da3df47e034841a08d.zip
cpython-f567ca3e1ae851ea6e7418da3df47e034841a08d.tar.gz
cpython-f567ca3e1ae851ea6e7418da3df47e034841a08d.tar.bz2
Patch #1678088: convert test_operations to use unittest, fold the result into test_dict.
Diffstat (limited to 'Lib/test/output')
-rw-r--r--Lib/test/output/test_operations21
1 files changed, 0 insertions, 21 deletions
diff --git a/Lib/test/output/test_operations b/Lib/test/output/test_operations
deleted file mode 100644
index 8a1bc2a..0000000
--- a/Lib/test/output/test_operations
+++ /dev/null
@@ -1,21 +0,0 @@
-test_operations
-3. Operations
-XXX Mostly not yet implemented
-3.1 Dictionary lookups fail if __cmp__() raises an exception
-raising error
-d[x2] = 2: caught the RuntimeError outside
-raising error
-z = d[x2]: caught the RuntimeError outside
-raising error
-x2 in d: caught the RuntimeError outside
-raising error
-d.has_key(x2): caught the RuntimeError outside
-raising error
-d.get(x2): caught the RuntimeError outside
-raising error
-d.setdefault(x2, 42): caught the RuntimeError outside
-raising error
-d.pop(x2): caught the RuntimeError outside
-raising error
-d.update({x2: 2}): caught the RuntimeError outside
-resize bugs not triggered.