mirror of
https://github.com/python/cpython.git
synced 2025-08-04 17:08:35 +00:00
Added separate tests for {}.get().
This commit is contained in:
parent
6fcfa72c63
commit
fb5cef1160
1 changed files with 3 additions and 0 deletions
|
@ -190,6 +190,9 @@ if d != {1:1, 2:2, 3:3}: raise TestFailed, 'dict update'
|
|||
if d.copy() != {1:1, 2:2, 3:3}: raise TestFailed, 'dict copy'
|
||||
if {}.copy() != {}: raise TestFailed, 'empty dict copy'
|
||||
# dict.get()
|
||||
d = {}
|
||||
if d.get('c') != None: raise TestFailed, 'missing {} get, no 2nd arg'
|
||||
if d.get('c', 3) != 3: raise TestFailed, 'missing {} get, w/ 2nd arg'
|
||||
d = {'a' : 1, 'b' : 2}
|
||||
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'
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue