Issue1814904

classification
Title: dict.update() doent accept the same arguments as constructor
Type: Severity: normal
Components: None Versions:
Milestone:
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: Nosy List: mehendran, pjenvey
Priority: normal Keywords:

Created on 2007-10-17.07:06:08 by mehendran, last changed 2008-06-06.02:14:10 by pjenvey.

Messages
msg1979 (view) Author: Mehendran (mehendran) Date: 2007-10-17.07:06:08
From Python 2.4 onwards, the dict.update() method accepts
the same argument forms as the dict constructor.
This includes any mapping, any iterable of key/value
pairs, and keyword arguments.

testcase file : test_dict.py
msg1980 (view) Author: Mehendran (mehendran) Date: 2007-10-17.15:20:23
Patch is attached with ID=[ 1814929 ]
msg3226 (view) Author: Philip Jenvey (pjenvey) Date: 2008-06-06.02:14:10
fixed in r4542
History
Date User Action Args
2008-06-06 02:14:10pjenveysetstatus: open -> closed
resolution: fixed
messages: + msg3226
nosy: + pjenvey
2007-10-17 07:06:08mehendrancreate