[issue3309] missing lock release in BZ2File_iternext()

2008-08-17 Thread Gregory P. Smith
Gregory P. Smith <[EMAIL PROTECTED]> added the comment: backported to release25-maint in r65790 -- status: open -> closed ___ Python tracker <[EMAIL PROTECTED]> ___ ___

[issue3309] missing lock release in BZ2File_iternext()

2008-07-06 Thread Gregory P. Smith
Gregory P. Smith <[EMAIL PROTECTED]> added the comment: Fixed in trunk r64767. Needs backporting to release25-maint. -- resolution: -> accepted type: -> behavior versions: +Python 2.5 -Python 2.6 ___ Python tracker <[EMAIL PROTECTED]>

[issue3309] missing lock release in BZ2File_iternext()

2008-07-06 Thread Gregory P. Smith
Changes by Gregory P. Smith <[EMAIL PROTECTED]>: -- assignee: -> gregory.p.smith keywords: +easy nosy: +gregory.p.smith priority: -> normal ___ Python tracker <[EMAIL PROTECTED]> ___

[issue3309] missing lock release in BZ2File_iternext()

2008-07-06 Thread STINNER Victor
New submission from STINNER Victor <[EMAIL PROTECTED]>: Call BZ2File_iternext() on closed file doesn't release the lock. Example: --- import bz2 obj = bz2.BZ2File('/etc/issue') obj.close() try: # acquire the lock obj.next() except ValueError, err: # but don't release the lock