Issue1814929

classification
Title: Patch for [ 1814904 ] dict.update() doesnt accept arguments
Type: Severity: normal
Components: None Versions:
Milestone:
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: Nosy List: mehendran, pjenvey
Priority: normal Keywords: patch

Created on 2007-10-17.08:05:31 by mehendran, last changed 2008-06-06.02:14:59 by pjenvey.

Files
File name Uploaded Description Edit Remove
new_update_function.diff mehendran, 2007-10-17.08:05:32 update upgraded
Messages
msg2931 (view) Author: Mehendran (mehendran) Date: 2007-10-17.08:05:31
Patch is uploaded. Due to this, the dict.update() method
now accepts the same argument forms as the dict
constructor. This includes any mapping, any iterable of 
key/value pairs, and keyword arguments.

test_dict.py is copied from CPython2.4 for test cases.
In the above file test_fromkeys and test_mutatingiteration are failing. So,they are exclued.
And, test cases dependent on mapping_tests module 
are also commented out.
msg3227 (view) Author: Philip Jenvey (pjenvey) Date: 2008-06-06.02:14:59
I've made fairly similar changes to this patch in r4542, thanks!
History
Date User Action Args
2008-06-06 02:14:59pjenveysetstatus: open -> closed
resolution: fixed
messages: + msg3227
nosy: + pjenvey
2007-10-17 08:05:31mehendrancreate