1. 20 Nov, 1997 5 commits
  2. 19 Nov, 1997 11 commits
  3. 18 Nov, 1997 17 commits
  4. 14 Nov, 1997 2 commits
    • Guido van Rossum's avatar
      This BUGS list hasn't been updated since the release of Python 1.2! · 46de1b06
      Guido van Rossum authored
      It is useless.  My real bugs database is currently being maintained
      with GNATS.
      46de1b06
    • Guido van Rossum's avatar
      This fix (across 4 files in 3 directories) solves a subtle problem with · 359bcaa5
      Guido van Rossum authored
      signal handlers in a fork()ed child process when Python is compiled with
      thread support.  The bug was reported by Scott <scott@chronis.icgroup.com>.
      
      What happens is that after a fork(), the variables used by the signal
      module to determine whether this is the main thread or not are bogus,
      and it decides that no thread is the main thread, so no signals will
      be delivered.
      
      The solution is the addition of PyOS_AfterFork(), which fixes the signal
      module's variables.  A dummy version of the function is present in the
      intrcheck.c source file which is linked when the signal module is not
      used.
      359bcaa5
  5. 11 Nov, 1997 5 commits