1. 08 Sep, 2007 1 commit
  2. 21 Aug, 2007 2 commits
  3. 25 Jul, 2007 1 commit
  4. 11 Jun, 2007 1 commit
  5. 01 Jun, 2007 1 commit
  6. 24 Apr, 2007 1 commit
  7. 01 Apr, 2007 1 commit
    • Neal Norwitz's avatar
      SF #1685563, MSVCCompiler creates redundant and long PATH strings · e4934597
      Neal Norwitz authored
      If MSVCCompiler.initialize() was called multiple times, the path
      would get duplicated.  On Windows, this is a problem because the
      path is limited to 4k.  There's no benefit in adding a path multiple
      times, so prevent that from occuring.  We also normalize the path
      before checking for duplicates so things like /a and /a/ won't both
      be stored.
      
      Will backport.
      e4934597
  8. 30 Mar, 2007 1 commit
  9. 13 Mar, 2007 1 commit
  10. 09 Feb, 2007 1 commit
  11. 03 Dec, 2006 1 commit
  12. 12 Nov, 2006 1 commit
  13. 10 Nov, 2006 1 commit
  14. 04 Nov, 2006 1 commit
  15. 18 Oct, 2006 1 commit
  16. 08 Oct, 2006 2 commits
  17. 06 Oct, 2006 1 commit
  18. 04 Oct, 2006 1 commit
  19. 16 Aug, 2006 1 commit
  20. 30 Jul, 2006 2 commits
  21. 27 Jul, 2006 1 commit
  22. 10 Jul, 2006 3 commits
  23. 03 Jul, 2006 1 commit
  24. 27 Jun, 2006 1 commit
  25. 26 May, 2006 1 commit
  26. 23 May, 2006 3 commits
  27. 01 May, 2006 1 commit
  28. 30 Apr, 2006 1 commit
  29. 29 Apr, 2006 1 commit
  30. 28 Apr, 2006 1 commit
  31. 25 Apr, 2006 1 commit
  32. 17 Apr, 2006 2 commits
    • Ronald Oussoren's avatar
      disutils checks if MACOSX_DEPLOYMENT_TARGET is consistent with the value at · 8e8c8486
      Ronald Oussoren authored
      configure time. The current check is too strict and doesn't allow building
      extensions that can only run on newer versions of the OS than the version
      python was build for, that is python build for 10.3 or later and an extension
      for 10.4. This patch relaxes this check.
      
      This turned out to be a reimplementation of patch 1193190.
      8e8c8486
    • Armin Rigo's avatar
      Fix for a bug exposed by r45232: · ea42db5c
      Armin Rigo authored
          /path/to/uninstalled/python setup.py build_ext
      
      now failed with pyconfig.h not found.  Prior to r45232
      the above command did not look for pyconfig.h, but the
      bug is really in the look-up code: expecting to find it
      in os.curdir is a rather fragile idea.
      ea42db5c