1. 15 Oct, 2001 11 commits
  2. 14 Oct, 2001 1 commit
  3. 13 Oct, 2001 22 commits
  4. 12 Oct, 2001 6 commits
    • Martin v. Löwis's avatar
      Correct __repr__: include module name, avoid extra space for empty status, · 106bdd3b
      Martin v. Löwis authored
      use 0x format for id. Proposed by Cesar Eduardo Barros in patch #470680.
      106bdd3b
    • Guido van Rossum's avatar
      SF patch #467455 : Enhanced environment variables, by Toby Dickenson. · 9abaf4d3
      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
      9abaf4d3
    • Tim Peters's avatar
      Get hotshot closer to compiling on Windows. · 1566a17a
      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.
      1566a17a
    • Guido van Rossum's avatar
      Jason Lowe · 3e996436
      Guido van Rossum authored
      3e996436
    • Guido van Rossum's avatar
      Add SF patch #468347 -- mask signals for non-main pthreads, by Jason Lowe: · 80230998
      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.
      80230998
    • Fred Drake's avatar
      Add entry for HotShot. · 3a40f32a
      Fred Drake authored
      3a40f32a