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 henrietta
Recipients henrietta
Date 2011-01-17.02:17:28
SpamBayes Score 1.4522743e-05
Marked as misclassified No
Message-id <1295230653.16.0.00822246437847.issue10923@psf.upfronthosting.co.za>
In-reply-to
Content
Python 2.7.1(x86 MSI), binary downloaded from python.org, hangs quite reliably. Code:

with open(threadspecific, 'ab') as x:
 txt = unicode(str_or_unicode_parameter).encode('utf8')
 x.write(txt+'\r\n')

However, it doesn't hang if I insert a print statement between with and txt, with anything. Previous testing determined that it hangs on encode().

Aforementioned code is executed in a threading environment, and it hangs in thread that is spawned by master thread. Interpreter is left with an open file.

Same behaviour is repeatable on Python 2.5.1.
History
Date User Action Args
2011-01-17 02:17:33henriettasetrecipients: + henrietta
2011-01-17 02:17:33henriettasetmessageid: <1295230653.16.0.00822246437847.issue10923@psf.upfronthosting.co.za>
2011-01-17 02:17:28henriettalinkissue10923 messages
2011-01-17 02:17:28henriettacreate