1. 06 Jul, 2016 9 commits
  2. 24 Jun, 2016 2 commits
    • Berker Peksag's avatar
      Merge from 3.5 · 0535891e
      Berker Peksag authored
      0535891e
    • Berker Peksag's avatar
      Make PyPIRCCommandTestCase derive from a base class · 90d7e0e1
      Berker Peksag authored
      Several test cases in distutils use PyPIRCCommandTestCase as
      their base class and as a result of that the following tests
      were ran more than once:
      
      * test_server_registration
      * test_server_empty_registration
      * test_config_interpolation
      
      This commit moves the infrastructure used by other tests
      into a new BasePyPIRCCommandTestCase class.
      90d7e0e1
  3. 20 Jun, 2016 2 commits
  4. 18 Jun, 2016 2 commits
  5. 17 Jun, 2016 2 commits
  6. 14 Jun, 2016 2 commits
  7. 10 Jun, 2016 2 commits
  8. 04 Jun, 2016 3 commits
  9. 03 Jun, 2016 2 commits
  10. 02 Jun, 2016 4 commits
  11. 26 May, 2016 2 commits
  12. 04 May, 2016 2 commits
  13. 24 Apr, 2016 3 commits
  14. 23 Apr, 2016 1 commit
  15. 24 Feb, 2016 2 commits
    • Ned Deily's avatar
      Issue #25136: merge from 3.5 · f9e0f03e
      Ned Deily authored
      f9e0f03e
    • Ned Deily's avatar
      Issue #25136: Support Apple Xcode 7's new textual SDK stub libraries. · ef3d89d5
      Ned Deily authored
      As of Xcode 7, SDKs for Apple platforms now include textual-format stub
      libraries whose file names have a .tbd extension rather than the
      standard OS X .dylib extension.  The Apple compiler tool chain handles
      these stub libraries transparently and the installed system shared libraries
      are still .dylibs.  However, the new stub libraries cause problems for
      third-party programs that support building with Apple SDKs and make
      build-time decisions based on the presence or paths of system-supplied
      shared libraries in the SDK.  In particular, building Python itself with
      an SDK fails to find system-supplied libraries during setup.py's build of
      standard library extension modules.  The solution is to have
      find_library_file() in Distutils search for .tbd files, along with
      the existing types (.a, .so, and .dylib).  Patch by Tim Smith.
      ef3d89d5