Message 43763 - Python tracker (original) (raw)

Logged In: YES user_id=80475

test_dict is fine.

Consider beefing up the tests for update(). As of Py2.4, it now takes all the same argument possibilites as dict():

 d.update(a=1, b=2)
 d.update([('a', 1), ('b', 2)])

Also, try to link in: from test_userdict import TestMappingProtocol

This was supposed to provide tests common to all mappings.