From: Guido van Rossum Date: Tue, 8 Aug 2000 16:13:23 +0000 (+0000) Subject: Barry's patch to test the new setdefault() method. X-Git-Tag: v2.0b1~538 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=79c9b17d174903bf42c8dd878093931d7df5cf57;p=thirdparty%2FPython%2Fcpython.git Barry's patch to test the new setdefault() method. --- diff --git a/Lib/test/test_types.py b/Lib/test/test_types.py index e22b0e2356e1..e3a51f090abc 100644 --- a/Lib/test/test_types.py +++ b/Lib/test/test_types.py @@ -253,3 +253,15 @@ if d.get('c') != None: raise TestFailed, 'missing dict get, no 2nd arg' if d.get('c', 3) != 3: raise TestFailed, 'missing dict get, w/ 2nd arg' if d.get('a') != 1: raise TestFailed, 'present dict get, no 2nd arg' if d.get('a', 3) != 1: raise TestFailed, 'present dict get, w/ 2nd arg' +# dict.setdefault() +d = {} +if d.setdefault('key0') <> None: + raise TestFailed, 'missing {} setdefault, no 2nd arg' +if d.setdefault('key0') <> None: + raise TestFailed, 'present {} setdefault, no 2nd arg' +d.setdefault('key', []).append(3) +if d['key'][0] <> 3: + raise TestFailed, 'missing {} setdefault, w/ 2nd arg' +d.setdefault('key', []).append(4) +if len(d['key']) <> 2: + raise TestFailed, 'present {} setdefault, w/ 2nd arg'