1. 24 Jun, 2012 37 commits
  2. 23 Jun, 2012 3 commits
    • Larry Hastings's avatar
      Issue #15154: Add "dir_fd" parameter to os.rmdir, remove "rmdir" · b698d8e7
      Larry Hastings authored
      parameter from os.remove / os.unlink.
      Patch written by Georg Brandl.  (I'm really looking forward to George
      getting commit privileges so I don't have to keep doing checkins on his
      behalf.)
      b698d8e7
    • Antoine Pitrou's avatar
      Errors in "client" methods in test_socket were ignored because of a bogus except clause. · b7eb563a
      Antoine Pitrou authored
      (this could reveal test failures!)
      b7eb563a
    • Ned Deily's avatar
      Issue #13590: Improve support for OS X Xcode 4: · cbfb9a56
      Ned Deily authored
      - Try to avoid building Python or extension modules with problematic
        llvm-gcc compiler.
      - Since Xcode 4 removes ppc support, extension module builds now
        check for ppc compiler support and automatically remove ppc and
        ppc64 archs when not available.
      - Since Xcode 4 no longer install SDKs in default locations,
        extension module builds now revert to using installed headers
        and libs if the SDK used to build the interpreter is not
        available.
      - Update ./configure to use better defaults for universal builds;
        in particular, --enable-universalsdk=yes uses the Xcode default
        SDK and --with-universal-archs now defaults to "intel" if ppc
        not available.
      cbfb9a56