class mydict(dict):
def __new__(cls, *args, **kwargs):
return UserDict(*args, **kwargs)
-try: mydict.fromkeys('a b c'.split())
-except TypeError: pass
-else: raise TestFailed, 'dict.fromkeys() failed to detect non-dict class.'
+ud = mydict.fromkeys('ab')
+if ud != {'a':None, 'b':None} or not isinstance(ud,UserDict):
+ raise TestFailed, 'fromkeys did not instantiate using __new__'
# dict.copy()
d = {1:1, 2:2, 3:3}
if d.copy() != {1:1, 2:2, 3:3}: raise TestFailed, 'dict copy'
d = PyObject_CallObject(cls, NULL);
if (d == NULL)
return NULL;
- if (!PyDict_Check(d)) {
- Py_DECREF(d);
- PyErr_SetString(PyExc_TypeError,
- "class constructor must return a subclass of dict");
- return NULL;
- }
it = PyObject_GetIter(seq);
if (it == NULL){
goto Fail;
break;
}
- status = PyDict_SetItem(d, key, value);
+ status = PyObject_SetItem(d, key, value);
Py_DECREF(key);
if (status < 0)
goto Fail;