1. 15 Oct, 2001 12 commits
  2. 14 Oct, 2001 1 commit
  3. 13 Oct, 2001 22 commits
  4. 12 Oct, 2001 5 commits
    • Martin v. Löwis's avatar
      Correct __repr__: include module name, avoid extra space for empty status, · b7f26ec0
      Martin v. Löwis authored
      use 0x format for id. Proposed by Cesar Eduardo Barros in patch #470680.
      b7f26ec0
    • Guido van Rossum's avatar
      SF patch #467455 : Enhanced environment variables, by Toby Dickenson. · 546da450
      Guido van Rossum authored
         This patch changes to logic to:
      
         if env.var. set and non-empty:
             if env.var. is an integer:
                 set flag to that integer
         if flag is zero: # [actually, <= 0 --GvR]
             set flag to 1
      
         Under this patch, anyone currently using
         PYTHONVERBOSE=yes will get the same output as before.
      
         PYTHONVERBNOSE=2 will generate more verbosity than
         before.
      
         The only unusual case that the following three are
         still all equivalent:
         PYTHONVERBOSE=yespleas
         PYTHONVERBOSE=1
         PYTHONVERBOSE=0
      546da450
    • Tim Peters's avatar
      Get hotshot closer to compiling on Windows. · 5a0345d5
      Tim Peters authored
      Still broken:  GETTIMEOFDAY.  This macro obviously isn't being defined
      on Windows, so there's logic errors here I'd rather Fred untangled.
      5a0345d5
    • Guido van Rossum's avatar
      Jason Lowe · ffc764d3
      Guido van Rossum authored
      ffc764d3
    • Guido van Rossum's avatar
      Add SF patch #468347 -- mask signals for non-main pthreads, by Jason Lowe: · d7c24945
      Guido van Rossum authored
         This patch updates Python/thread_pthread.h to mask all
         signals for any thread created. This will keep all
         signals masked for any thread that isn't the initial
         thread. For Solaris and Linux, the two platforms I was
         able to test it on, it solves bug #465673 (pthreads
         need signal protection) and probably will solve bug
         #219772 (Interactive InterPreter+ Thread -> core dump
         at exit).
      
         I'd be great if this could get some testing on other
         platforms, especially HP-UX pre 11.00 and post 11.00,
         as I had to make some guesses for the DCE thread case.
         AIX is also a concern as I saw some mention of using
         sigthreadmask() as a pthread_sigmask() equivalent, but
         this patch doesn't use sigthreadmask(). I don't have
         access to AIX.
      d7c24945