Re: [Tutor] cgi.FieldStorage() causing thread.error: can't allocate lock

2014-06-01 Thread Danny Yoo
On Sun, Jun 1, 2014 at 10:44 AM, Danny Yoo wrote: > Hi Shal, > > You may want to report a bug on Python's bug tracker. What you're > seeing is unusual enough to warrant sending a bug report upstream. > Visit: > > http://bugs.python.org/ > > and send a report. In the report, please include al

Re: [Tutor] cgi.FieldStorage() causing thread.error: can't allocate lock

2014-06-01 Thread Danny Yoo
Hi Shal, You may want to report a bug on Python's bug tracker. What you're seeing is unusual enough to warrant sending a bug report upstream. Visit: http://bugs.python.org/ and send a report. In the report, please include all the information you've shown us here, and hopefully someone ther

Re: [Tutor] cgi.FieldStorage() causing thread.error: can't allocate lock

2014-06-01 Thread Alan Gauld
On 01/06/14 08:05, SABARWAL, SHAL wrote: Folks, Appreciate any more insight into this problem. ? The error occurs not frequently, and would still like to understand and resolve it. The calling application(applicationCode.py) has a basic - form = cgi.FieldStorage() I have attached cgi.py, mi

Re: [Tutor] cgi.FieldStorage() causing thread.error: can't allocate lock

2014-06-01 Thread SABARWAL, SHAL
Folks, Appreciate any more insight into this problem. ? The error occurs not frequently, and would still like to understand and resolve it. Thanks Shal From: SABARWAL, SHAL Sent: Wednesday, May 28, 2014 5:07 PM To: 'tutor@python.org' Subject: RE: cgi.FieldStorage() causing thread.error: can't all

Re: [Tutor] cgi.FieldStorage() causing thread.error: can't allocate lock

2014-05-24 Thread Dave Angel
Peter Otten <__pete...@web.de> Wrote in message: > Alan Gauld wrote: > >> >> As it stands it is impossible to tell how tempfile.py relates to >> cgi.FieldStorage() or even if the error is related to that >> at all. > > Here's what the cgi.FieldStorage.make_file() method looks like > > def

Re: [Tutor] cgi.FieldStorage() causing thread.error: can't allocate lock

2014-05-24 Thread Peter Otten
Alan Gauld wrote: > On 23/05/14 12:57, SABARWAL, SHAL wrote: >> Wondering if anyone came across this error in using form = >> cgi.FieldStorage() >> >> import tempfile >> >> File /tempfile.py", line 83, in _once_lock >> = _allocate_lock() >> >> thread.

Re: [Tutor] cgi.FieldStorage() causing thread.error: can't allocate lock

2014-05-23 Thread Alan Gauld
On 23/05/14 12:57, SABARWAL, SHAL wrote: Wondering if anyone came across this error in using form = cgi.FieldStorage() import tempfile File /tempfile.py", line 83, in _once_lock = _allocate_lock() thread.error: can't allocate lock puthon version

[Tutor] cgi.FieldStorage() causing thread.error: can't allocate lock

2014-05-23 Thread SABARWAL, SHAL
Wondering if anyone came across this error in using form = cgi.FieldStorage() import tempfile File /tempfile.py", line 83, in _once_lock = _allocate_lock() thread.error: can't allocate lock puthon version 2.7, on HP-UX 11.11 ___