Software developer specializing in MongoDB, Python, Tornado, and Javascript, with particular interests in real-time web and new tools that get the job done with grace and alacrity. A. Jesse Jiryu is a DZone MVB and is not an employee of DZone and has posted 43 posts at DZone. You can read more from them at their website. View Full User Profile

Mollified About ResourceWarnings

06.05.2012
| 1248 views |
  • submit to reddit

Last month I griped about ResourceWarnings in Python 3, arguing they’re a useless irritation in a language that can clean up resources automatically. Python core developer Nick Coghlan responded in the comments and I understand the choice now.

Nick explains that ResourceWarnings reveal problems that would make the Python standard library inefficient running in PyPy. A resource like a socket can clean itself up promptly in CPython, but now that it issues a ResourceWarning when it isn’t explicitly closed, the socket helps library authors prepare for PyPy, in which resources are not promptly cleaned up. If I decide that lazy cleanup is ok, I can avoid ResourceWarnings by using a weakref callback to close the resource before it’s deleted, whenever that happens.

Nick also pointed out that ResourceWarnings are off by default in normal Python programs—I just saw them all the time because I usually run my code in nosetest.

Read our full discussion in the comments.

Props to Nick for taking the time to explain.

Published at DZone with permission of A. Jesse Jiryu Davis, author and DZone MVB. (source)

(Note: Opinions expressed in this article and its replies are the opinions of their respective authors and not those of DZone, Inc.)

Tags: