This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author eddy
Recipients eddy, georg.brandl
Date 2010-02-14.11:48:16
SpamBayes Score 0.002010508
Marked as misclassified No
Message-id <1266148157.26.0.130989971598.issue7926@psf.upfronthosting.co.za>
In-reply-to
Content
The third change removes the early uses of "object" from:
<quote> Finally, the closing(object)() function returns object so that it can be bound to a variable, and calls object.close at the end of the block. </quote>
leaving the last use (object.close) as a dangling reference.
So either revert this part of the fix and change :func:`closing(object)` to just ``closing(object)`` or follow up the present change by changing <quote> and calls :meth `object.close` at the end </quote> to <q> and calls the argument's :meth:`close` method at the end </q>
History
Date User Action Args
2010-02-14 11:49:17eddysetrecipients: + eddy, georg.brandl
2010-02-14 11:49:17eddysetmessageid: <1266148157.26.0.130989971598.issue7926@psf.upfronthosting.co.za>
2010-02-14 11:48:16eddylinkissue7926 messages
2010-02-14 11:48:16eddycreate