1. 10 Feb, 2020 1 commit
  2. 06 Feb, 2020 1 commit
  3. 04 Feb, 2020 1 commit
  4. 23 Dec, 2019 1 commit
  5. 15 Dec, 2019 1 commit
  6. 19 Nov, 2019 1 commit
  7. 10 Sep, 2019 1 commit
  8. 28 Aug, 2019 1 commit
  9. 08 Aug, 2019 2 commits
  10. 01 Aug, 2019 1 commit
  11. 05 Jul, 2019 1 commit
  12. 03 Jul, 2019 1 commit
  13. 01 Jul, 2019 1 commit
    • Miro Hrončok's avatar
      bpo-10945: Drop support for bdist_wininst on non-Windows systems (GH-14506) · eb834d03
      Miro Hrončok authored
      bdist_wininst depends on MBCS codec, unavailable on non-Windows,
      and bdist_wininst have not worked since at least Python 3.2, possibly
      never on Python 3.
      
      Here we document that bdist_wininst is only supported on Windows,
      and we mark it unsupported otherwise to skip tests.
      
      Distributors of Python 3 can now safely drop the bdist_wininst .exe files
      without the need to skip bdist_wininst related tests.
      eb834d03
  14. 12 Jun, 2019 1 commit
  15. 08 Jun, 2019 1 commit
  16. 02 Jun, 2019 1 commit
  17. 24 May, 2019 1 commit
    • E. M. Bray's avatar
      bpo-21536: On Cygwin, C extensions must be linked with libpython (GH-13549) · 9d9a6d30
      E. M. Bray authored
      It is also possible to link against a library or executable with a
      statically linked libpython, but not both with the same DLL.  In fact
      building a statically linked python is currently broken on Cygwin
      for other (related) reasons.
      
      The same problem applies to other POSIX-like layers over Windows
      (MinGW, MSYS) but Python's build system does not seem to attempt
      to support those platforms at the moment.
      9d9a6d30
  18. 29 Apr, 2019 1 commit
  19. 25 Apr, 2019 3 commits
  20. 17 Apr, 2019 2 commits
  21. 10 Apr, 2019 1 commit
  22. 09 Apr, 2019 1 commit
  23. 08 Apr, 2019 1 commit
  24. 27 Mar, 2019 1 commit
  25. 18 Mar, 2019 1 commit
  26. 15 Mar, 2019 1 commit
  27. 12 Mar, 2019 1 commit
  28. 04 Mar, 2019 1 commit
    • Kevin Adler's avatar
      bpo-35198 Fix C++ extension compilation on AIX (GH-10437) · 9d329c1b
      Kevin Adler authored
      For C++ extensions, distutils tries to replace the C compiler with the
      C++ compiler, but it assumes that C compiler is the first element after
      any environment variables set. On AIX, linking goes through ld_so_aix,
      so it is the first element and the compiler is the next element. Thus
      the replacement is faulty:
      
      ld_so_aix gcc ... -> g++ gcc ...
      
      Also, it assumed that self.compiler_cxx had only 1 element or that
      there were the same number of elements as the linker has and in the
      same order. This might not be the case, so instead concatenate
      everything together.
      9d329c1b
  29. 05 Feb, 2019 1 commit
  30. 20 Jan, 2019 1 commit
  31. 09 Jan, 2019 1 commit
  32. 28 Dec, 2018 1 commit
  33. 20 Dec, 2018 1 commit
  34. 18 Dec, 2018 1 commit
  35. 17 Dec, 2018 1 commit
  36. 05 Dec, 2018 1 commit