Compare commits
4 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
efd443f1bc | ||
|
|
9dc990f077 | ||
|
|
04667fd3af | ||
|
|
8e8bb00c21 |
@ -2577,7 +2577,7 @@ static PyObject* _cbson_element_to_dict(PyObject* self, PyObject* args) {
|
||||
return NULL;
|
||||
}
|
||||
|
||||
result_tuple = Py_BuildValue("OOi", name, value, new_position);
|
||||
result_tuple = Py_BuildValue("NNi", name, value, new_position);
|
||||
if (!result_tuple) {
|
||||
Py_DECREF(name);
|
||||
Py_DECREF(value);
|
||||
|
||||
@ -1,6 +1,21 @@
|
||||
Changelog
|
||||
=========
|
||||
|
||||
Changes in Version 3.3.1
|
||||
------------------------
|
||||
|
||||
Version 3.3.1 fixes a memory leak when decoding elements inside of a
|
||||
:class:`~bson.raw_bson.RawBSONDocument`.
|
||||
|
||||
Issues Resolved
|
||||
...............
|
||||
|
||||
See the `PyMongo 3.3.1 release notes in Jira`_ for the list of resolved issues
|
||||
in this release.
|
||||
|
||||
.. _PyMongo 3.3.1 release notes in Jira: https://jira.mongodb.org/browse/PYTHON/fixforversion/17636
|
||||
|
||||
|
||||
Changes in Version 3.3
|
||||
----------------------
|
||||
|
||||
|
||||
@ -70,7 +70,8 @@ SLOW_ONLY = 1
|
||||
ALL = 2
|
||||
"""Profile all operations."""
|
||||
|
||||
version_tuple = (3, 3, 0)
|
||||
version_tuple = (3, 3, 1)
|
||||
|
||||
|
||||
def get_version_string():
|
||||
if isinstance(version_tuple[-1], str):
|
||||
|
||||
Loading…
Reference in New Issue
Block a user