1. 25 Apr, 2019 1 commit
  2. 17 Apr, 2019 2 commits
  3. 10 Apr, 2019 1 commit
  4. 09 Apr, 2019 1 commit
  5. 08 Apr, 2019 1 commit
  6. 27 Mar, 2019 1 commit
  7. 18 Mar, 2019 1 commit
  8. 15 Mar, 2019 1 commit
  9. 12 Mar, 2019 1 commit
  10. 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
  11. 05 Feb, 2019 1 commit
  12. 20 Jan, 2019 1 commit
  13. 09 Jan, 2019 1 commit
  14. 28 Dec, 2018 1 commit
  15. 20 Dec, 2018 1 commit
  16. 18 Dec, 2018 1 commit
  17. 17 Dec, 2018 1 commit
  18. 05 Dec, 2018 1 commit
  19. 05 Nov, 2018 1 commit
  20. 27 Oct, 2018 1 commit
  21. 23 Sep, 2018 2 commits
  22. 20 Sep, 2018 1 commit
  23. 11 Sep, 2018 1 commit
  24. 08 Sep, 2018 1 commit
  25. 07 Sep, 2018 2 commits
  26. 04 Sep, 2018 1 commit
  27. 26 Jul, 2018 1 commit
  28. 16 Jul, 2018 1 commit
  29. 18 Feb, 2018 1 commit
  30. 26 Jan, 2018 1 commit
  31. 18 Jan, 2018 1 commit
  32. 14 Dec, 2017 1 commit
  33. 05 Dec, 2017 1 commit
  34. 28 Nov, 2017 2 commits
    • Victor Stinner's avatar
      bpo-32155: Revert distutils.config change (#4618) · 3c144a62
      Victor Stinner authored
      Revert distutils changes of the commit
      696b501cd11dc429a0f661adeb598bfaf89e4112 and remove the realm
      variable.
      3c144a62
    • Victor Stinner's avatar
      bpo-32155: Bugfixes found by flake8 F841 warnings (#4608) · f7194b87
      Victor Stinner authored
      * distutils.config: Use the PyPIRCCommand.realm attribute if set
      * turtledemo: wait until macOS osascript command completes to not
        create a zombie process
      * Tools/scripts/treesync.py: declare 'default_answer' and
        'create_files' as globals to modify them with the command line
        arguments. Previously, -y, -n, -f and -a options had no effect.
      
      flake8 warning: "F841 local variable 'p' is assigned to but never
      used".
      f7194b87
  35. 23 Nov, 2017 1 commit
  36. 18 Nov, 2017 1 commit