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;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
result_tuple = Py_BuildValue("OOi", name, value, new_position);
|
result_tuple = Py_BuildValue("NNi", name, value, new_position);
|
||||||
if (!result_tuple) {
|
if (!result_tuple) {
|
||||||
Py_DECREF(name);
|
Py_DECREF(name);
|
||||||
Py_DECREF(value);
|
Py_DECREF(value);
|
||||||
|
|||||||
@ -1,6 +1,21 @@
|
|||||||
Changelog
|
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
|
Changes in Version 3.3
|
||||||
----------------------
|
----------------------
|
||||||
|
|
||||||
|
|||||||
@ -70,7 +70,8 @@ SLOW_ONLY = 1
|
|||||||
ALL = 2
|
ALL = 2
|
||||||
"""Profile all operations."""
|
"""Profile all operations."""
|
||||||
|
|
||||||
version_tuple = (3, 3, 0)
|
version_tuple = (3, 3, 1)
|
||||||
|
|
||||||
|
|
||||||
def get_version_string():
|
def get_version_string():
|
||||||
if isinstance(version_tuple[-1], str):
|
if isinstance(version_tuple[-1], str):
|
||||||
|
|||||||
2
setup.py
2
setup.py
@ -26,7 +26,7 @@ from distutils.errors import CCompilerError, DistutilsOptionError
|
|||||||
from distutils.errors import DistutilsPlatformError, DistutilsExecError
|
from distutils.errors import DistutilsPlatformError, DistutilsExecError
|
||||||
from distutils.core import Extension
|
from distutils.core import Extension
|
||||||
|
|
||||||
version = "3.3.0"
|
version = "3.3.1"
|
||||||
|
|
||||||
f = open("README.rst")
|
f = open("README.rst")
|
||||||
try:
|
try:
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user