1. 28 Aug, 2011 2 commits
    • Nadeem Vawda's avatar
      Merge: #12839: Fix crash in zlib module due to version mismatch. · 44c6ef50
      Nadeem Vawda authored
      If the version of zlib used to compile the zlib module is incompatible
      with the one that is actually linked in, then calls into zlib will fail.
      This can leave attributes of the z_stream uninitialized, so we must take
      care to avoid segfaulting by trying to use an invalid pointer.
      
      Fix by Richard M. Tew.
      44c6ef50
    • Nadeem Vawda's avatar
      Issue #12839: Fix crash in zlib module due to version mismatch. · 524148ad
      Nadeem Vawda authored
      If the version of zlib used to compile the zlib module is incompatible
      with the one that is actually linked in, then calls into zlib will fail.
      This can leave attributes of the z_stream uninitialized, so we must take
      care to avoid segfaulting by trying to use an invalid pointer.
      
      Fix by Richard M. Tew.
      524148ad
  2. 27 Aug, 2011 10 commits
  3. 26 Aug, 2011 5 commits
  4. 25 Aug, 2011 14 commits
  5. 24 Aug, 2011 6 commits
  6. 23 Aug, 2011 3 commits
    • Éric Araujo's avatar
      Merge distutils bug fix from 3.2 · 09ab4f86
      Éric Araujo authored
      09ab4f86
    • Éric Araujo's avatar
      Fix distutils tests on Windows (#12678). · 175eb995
      Éric Araujo authored
      - First, support.fixup_build_ext (already used to set proper
        library_dirs value under Unix shared builds) gains the ability to
        correctly set the debug attribute under Windows debug builds.
      
      - Second, the filename for the extension module gets a _d suffix under
        debug builds.
      
      - Third, the test code properly puts our customized build_ext object
        into an internal dictionary to make sure that the install command will
        later use our object instead of re-creating one.  That’s the downside
        of using low-level APIs in our test code: we have to manually push
        knobs and turn handles that would otherwise be handled behind the
        scenes.
      
      Thanks to Nadeem for the testing.
      175eb995
    • Éric Araujo's avatar
      Branch merge · 831fe487
      Éric Araujo authored
      831fe487