1. 07 Şub, 2015 1 kayıt (commit)
  2. 20 Mar, 2014 1 kayıt (commit)
  3. 13 Mar, 2014 1 kayıt (commit)
    • Éric Araujo's avatar
      Make distutils error messages more helpful (#11599). · 45fc8713
      Éric Araujo yazdı
      When running external programs such as a C compiler and getting an
      error code, distutils only prints the program name.  With this change,
      one can get the full command line by setting the DISTUTILS_DEBUG
      environment variable.
      
      This should have no compatibility issues, unless there are tools
      that depend on the exact format of distutils debug messages.
      45fc8713
  4. 10 Eki, 2012 1 kayıt (commit)
  5. 28 Tem, 2011 1 kayıt (commit)
  6. 29 Haz, 2011 2 kayıt (commit)
    • Ned Deily's avatar
      Issue #9516: Change distutils to no longer globally attempt to check and · a8f8b50b
      Ned Deily yazdı
      set the MACOSX_DEPLOYMENT_TARGET env variable for the interpreter process
      on OS X.  This could cause failures in non-distutils subprocesses and was
      unreliable since tests or user programs could modify the interpreter
      environment after distutils set it.  Instead, have distutils set the
      the deployment target only in the environment of each build subprocess.
      
      Continue to use the previous algorithm for deriving the deployment target
      value:
          if MACOSX_DEPLOYMENT_TARGET is not set in the interpreter's env:
              use the interpreter build configure MACOSX_DEPLOYMENT_TARGET
          elif the MACOSX_DEPLOYMENT_TARGET env value >= configure value:
              use the env MACOSX_DEPLOYMENT_TARGET
          else: # env value less than interpreter build configure value
              raise exception
      This allows building extensions that can only run on newer versions of
      the OS than the version python was built for, for example with a python
      built for 10.3 or later and an extension that needs to be built for 10.5.
      a8f8b50b
    • Ned Deily's avatar
      Issue #9516: Change distutils to no longer globally attempt to check and · 041645a8
      Ned Deily yazdı
      set the MACOSX_DEPLOYMENT_TARGET env variable for the interpreter process
      on OS X.  This could cause failures in non-distutils subprocesses and was
      unreliable since tests or user programs could modify the interpreter
      environment after distutils set it.  Instead, have distutils set the
      the deployment target only in the environment of each build subprocess.
      
      Continue to use the previous algorithm for deriving the deployment target
      value:
          if MACOSX_DEPLOYMENT_TARGET is not set in the interpreter's env:
              use the interpreter build configure MACOSX_DEPLOYMENT_TARGET
          elif the MACOSX_DEPLOYMENT_TARGET env value >= configure value:
              use the env MACOSX_DEPLOYMENT_TARGET
          else: # env value less than interpreter build configure value
              raise exception
      This allows building extensions that can only run on newer versions of
      the OS than the version python was built for, for example with a python
      built for 10.3 or later and an extension that needs to be built for 10.5.
      041645a8
  7. 02 Haz, 2009 2 kayıt (commit)
  8. 25 Ock, 2009 1 kayıt (commit)
  9. 06 Ock, 2008 1 kayıt (commit)
  10. 30 Agu, 2007 1 kayıt (commit)
  11. 17 Nis, 2007 1 kayıt (commit)
  12. 09 Şub, 2007 1 kayıt (commit)
    • Guido van Rossum's avatar
      Fix most trivially-findable print statements. · be19ed77
      Guido van Rossum yazdı
      There's one major and one minor category still unfixed:
      doctests are the major category (and I hope to be able to augment the
      refactoring tool to refactor bona fide doctests soon);
      other code generating print statements in strings is the minor category.
      
      (Oh, and I don't know if the compiler package works.)
      be19ed77
  13. 10 Ock, 2007 1 kayıt (commit)
  14. 10 Kas, 2004 1 kayıt (commit)
  15. 18 Tem, 2004 1 kayıt (commit)
  16. 24 Şub, 2004 1 kayıt (commit)
  17. 21 Kas, 2002 1 kayıt (commit)
  18. 19 Kas, 2002 1 kayıt (commit)
  19. 14 Kas, 2002 1 kayıt (commit)
  20. 04 Haz, 2002 1 kayıt (commit)
    • Jeremy Hylton's avatar
      Make setup.py less chatty by default. · cd8a1148
      Jeremy Hylton yazdı
      This is a conservative version of SF patch 504889.  It uses the log
      module instead of calling print in various places, and it ignores the
      verbose argument passed to many functions and set as an attribute on
      some objects.  Instead, it uses the verbosity set on the logger via
      the command line.
      
      The log module is now preferred over announce() and warn() methods
      that exist only for backwards compatibility.
      
      XXX This checkin changes a lot of modules that have no test suite and
      aren't exercised by the Python build process.  It will need
      substantial testing.
      cd8a1148
  21. 31 Ock, 2002 1 kayıt (commit)
  22. 06 Ara, 2001 1 kayıt (commit)
  23. 26 Eyl, 2000 1 kayıt (commit)
  24. 02 Agu, 2000 1 kayıt (commit)
  25. 26 Mar, 2000 1 kayıt (commit)
  26. 23 Mar, 2000 1 kayıt (commit)
  27. 07 Mar, 2000 1 kayıt (commit)
  28. 02 Mar, 2000 1 kayıt (commit)
  29. 17 Ock, 2000 1 kayıt (commit)
  30. 08 Eyl, 1999 1 kayıt (commit)
    • Greg Ward's avatar
      [from 1999/08/28] · a4d132a8
      Greg Ward yazdı
      Apparently os.name is "nt" or "posix" or we don't care.
      Cosmetic tweaks.
      a4d132a8
  31. 29 Agu, 1999 1 kayıt (commit)
  32. 14 Agu, 1999 1 kayıt (commit)