mirror of
https://github.com/python/cpython.git
synced 2025-12-04 00:30:19 +00:00
Add test and fix for fromkeys() optional argument.
This commit is contained in:
parent
7492e4260e
commit
e3146f5aa3
2 changed files with 5 additions and 2 deletions
|
|
@ -1186,8 +1186,8 @@ dict_fromkeys(PyObject *cls, PyObject *args)
|
|||
|
||||
while (_PySet_NextEntry(seq, &pos, &key, &hash)) {
|
||||
Py_INCREF(key);
|
||||
Py_INCREF(Py_None);
|
||||
if (insertdict(mp, key, hash, Py_None))
|
||||
Py_INCREF(value);
|
||||
if (insertdict(mp, key, hash, value))
|
||||
return NULL;
|
||||
}
|
||||
return d;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue