1. 07 Sep, 2016 1 commit
  2. 06 Sep, 2016 2 commits
  3. 02 Sep, 2016 5 commits
  4. 03 Aug, 2016 4 commits
  5. 11 Jul, 2016 1 commit
  6. 06 Jul, 2016 6 commits
  7. 24 Jun, 2016 1 commit
    • 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
  8. 20 Jun, 2016 1 commit
  9. 18 Jun, 2016 1 commit
  10. 17 Jun, 2016 1 commit
  11. 10 Jun, 2016 1 commit
  12. 04 Jun, 2016 1 commit
  13. 03 Jun, 2016 1 commit
  14. 02 Jun, 2016 4 commits
  15. 26 May, 2016 2 commits
  16. 04 May, 2016 2 commits
  17. 24 Apr, 2016 3 commits
  18. 23 Apr, 2016 1 commit
  19. 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