Re: [Python-Dev] fun threading problem

2006-09-14 Thread Neal Norwitz
On 9/14/06, Aahz <[EMAIL PROTECTED]> wrote: > On Thu, Sep 14, 2006, Neal Norwitz wrote: > > > > On everyones favorite platform (HP-UX), the following code > > consistently fails: > > Which exact HP-UX? I remember from my ancient days that each HP-UX > version completely changes the way threading w

[Python-Dev] Weekly Python Patch/Bug Summary

2006-09-14 Thread Kurt B. Kaiser
Patch / Bug Summary ___ Patches : 416 open ( +3) / 3408 closed ( +1) / 3824 total ( +4) Bugs: 898 open ( +1) / 6180 closed (+13) / 7078 total (+14) RFE : 234 open ( +0) / 238 closed ( +0) / 472 total ( +0) New / Reopened Patches __ email par

Re: [Python-Dev] fun threading problem

2006-09-14 Thread Aahz
On Thu, Sep 14, 2006, Neal Norwitz wrote: > > On everyones favorite platform (HP-UX), the following code > consistently fails: Which exact HP-UX? I remember from my ancient days that each HP-UX version completely changes the way threading works -- dunno whether that's still true. -- Aahz ([EMAIL

[Python-Dev] fun threading problem

2006-09-14 Thread Neal Norwitz
On everyones favorite platform (HP-UX), the following code consistently fails: ### from thread import start_new_thread, allocate_lock from time import sleep def bootstrap(): from os import fork ; fork() allocate_lock().acquire() start_new_thread(bootstrap, ()) sleep(.1) ### The error is