Kaydet (Commit) d8e5d6c4 authored tarafından Eric Snow's avatar Eric Snow

Merge from 3.5.

......@@ -37,6 +37,8 @@ Library
- Issue #24362: Simplify the C OrderedDict fast nodes resize logic.
- Issue #24377: Fix a ref leak in OrderedDict.__repr__.
What's New in Python 3.5.0 beta 2?
==================================
......
......@@ -1578,7 +1578,7 @@ odict_repr(PyODictObject *self)
if (value == NULL) {
if (!PyErr_Occurred())
PyErr_SetObject(PyExc_KeyError, key);
return NULL;
goto Done;
}
pair = PyTuple_Pack(2, key, value);
if (pair == NULL)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment