Motor 0.2.1 Released
Join the DZone community and get the full member experience.
Join For FreeVersion 0.2.1 of Motor, the asynchronous MongoDB driver for Python and Tornado, has been released. It fixes two bugs:
- MOTOR-32: The documentation claimed that
MotorCursor.close
immediately halted execution ofMotorCursor.each
, but it didn't.MotorCursor.each()
is now halted correctly. - MOTOR-33: An incompletely iterated cursor's
__del__
method sometimes got stuck and cost 100% CPU forever, even though the application was still responsive.
The manual is on ReadTheDocs. If you find a bug or want a feature, I exhort you to report it.
application
Execution (computing)
Python (language)
Driver (software)
Documentation
MongoDB
Published at DZone with permission of A. Jesse Jiryu Davis, DZone MVB. See the original article here.
Opinions expressed by DZone contributors are their own.
Comments