1. 05 Feb, 2006 4 commits
    • Neal Norwitz's avatar
      Get test_logging to not hang when running under regrtest.py -R :: · 55cd82fe
      Neal Norwitz authored
      Not sure why/how _handlers/_handlerList is out of sync.  This could
      indicate a deeper problem.
      
      In test_logging, the only absolutely necessary change to get working
      was tcpserver.abort = 1.  But we don't want to wait infinitely
      to join the threads, so give a 2.0 second timeout.
      
      There doesn't appear to be a need for a local abort variable
      in serve_until_stopped, so just use the instance member.
      
      Note the problem is only on HEAD, not in 2.4.
      55cd82fe
    • Neal Norwitz's avatar
      Patch #1407135, bug #1424041, make mmap.mmap(-1, length) work the same · 0e6bc8c2
      Neal Norwitz authored
      on both Unix (SVR4 and BSD) and Windows.  Restores behaviour of passing -1
      for anonymous memory on Unix.  Use MAP_ANONYMOUS instead of _ANON since
      the latter is deprecated according to Linux (gentoo) man pages.
      
      Should we continue to allow mmap.mmap(0, length) to work on Windows?
      0 is a valid fd.
      
      Will backport bugfix portions.
      0e6bc8c2
    • Neal Norwitz's avatar
      Whitespace normalization · d1cfc8ad
      Neal Norwitz authored
      d1cfc8ad
    • Neal Norwitz's avatar
      Use C-style comment · 96e48d46
      Neal Norwitz authored
      96e48d46
  2. 04 Feb, 2006 4 commits
  3. 03 Feb, 2006 2 commits
  4. 02 Feb, 2006 1 commit
  5. 01 Feb, 2006 1 commit
    • Thomas Wouters's avatar
      As discussed on python-dev, silence three gcc-4.0.x warnings, using assert() · 553489ab
      Thomas Wouters authored
      to protect against actual uninitialized usage.
      
      Objects/longobject.c: In function ‘PyLong_AsDouble’:
      Objects/longobject.c:655: warning: ‘e’ may be used uninitialized in this function
      
      Objects/longobject.c: In function ‘long_true_divide’:
      Objects/longobject.c:2263: warning: ‘aexp’ may be used uninitialized in this function
      Objects/longobject.c:2263: warning: ‘bexp’ may be used uninitialized in this function
      553489ab
  6. 31 Jan, 2006 1 commit
  7. 30 Jan, 2006 2 commits
  8. 29 Jan, 2006 6 commits
  9. 28 Jan, 2006 1 commit
    • Thomas Wouters's avatar
      Work around a Solaris peculiarity that caused test_pty to sometimes fail: a · 35f34f8d
      Thomas Wouters authored
      tty opened by os.openpty() isn't always a tty according to os.isatty(), when
      it's tested inside the process that opened it. Doesn't affect actual
      functionality, as using a tty this way is rarely, if ever, useful. Ignoring
      the failure allows the test for actual functionality to continue.
      
      Will backport to 2.4-maint.
      35f34f8d
  10. 27 Jan, 2006 3 commits
  11. 26 Jan, 2006 1 commit
  12. 25 Jan, 2006 4 commits
  13. 24 Jan, 2006 8 commits
  14. 23 Jan, 2006 2 commits