1. 21 Mar, 2006 4 commits
    • Martin v. Löwis's avatar
      Update to Tk 8.4.12 and Tix 8.4.0 · 9ca8789e
      Martin v. Löwis authored
      9ca8789e
    • Martin v. Löwis's avatar
      Update to OpenSSL 0.9.8a · a0f4549b
      Martin v. Löwis authored
      a0f4549b
    • Georg Brandl's avatar
      Add a note about pow(x,y) equalling x**y (the "**" operator · 48b4bf7b
      Georg Brandl authored
      was used unmotivated in the pow() docs)
      48b4bf7b
    • Tim Peters's avatar
      Try to repair at least one segfault on the Mac buildbot, · 59b96c10
      Tim Peters authored
      as diagnosed by Nick Coghlan.
      
      test_capi.py:  A test module should never spawn a thread as
      a side effect of being imported.  Because this one did, the
      segfault one of its thread tests caused didn't occur until
      a few tests after test_regrtest.py thought test_capi was
      finished.  Repair that.  Also join() the thread spawned
      at the end, so that test_capi is truly finished when
      regrtest reports that it's done.
      
      _testcapimodule.c test_thread_state():  this spawns a
      couple of non-threading.py threads, passing them a PyObject*
      argument, but did nothing to ensure that those threads
      finished before returning.  As a result, the PyObject*
      _could_ (although this was unlikely) get decref'ed out of
      existence before the threads got around to using it.
      Added explicit synchronization (via a Python mutex) so
      that test_thread_state can reliably wait for its spawned
      threads to finish.
      59b96c10
  2. 20 Mar, 2006 25 commits
  3. 19 Mar, 2006 2 commits
  4. 18 Mar, 2006 9 commits