- 13 Mar, 2014 1 commit
-
-
Éric Araujo authored
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.
-
- 10 Oct, 2012 1 commit
-
-
Jesus Cea authored
-
- 28 Jul, 2011 1 commit
-
-
Senthil Kumaran authored
Fix closes Issue11439 Remove the SVN keywords from the code as it is no longer applicable in hg. Patch Contributed by Neil Muller.
-
- 29 Jun, 2011 2 commits
-
-
Ned Deily authored
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.
-
Ned Deily authored
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.
-
- 02 Jun, 2009 2 commits
-
-
Tarek Ziadé authored
svn+ssh://pythondev@svn.python.org/python/trunk ........ r73147 | tarek.ziade | 2009-06-02 17:58:43 +0200 (Tue, 02 Jun 2009) | 1 line improved distutils.spawn test coverage + cleaned it up ........
-
Tarek Ziadé authored
-
- 25 Jan, 2009 1 commit
-
-
Tarek Ziadé authored
-
- 06 Jan, 2008 1 commit
-
-
Georg Brandl authored
-
- 30 Aug, 2007 1 commit
-
-
Collin Winter authored
-
- 17 Apr, 2007 1 commit
-
-
Neal Norwitz authored
* all calls to functions in the string module (except maketrans) * everything from stropmodule except for maketrans() which is still used
-
- 09 Feb, 2007 1 commit
-
-
Guido van Rossum authored
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.)
-
- 10 Jan, 2007 1 commit
-
-
Guido van Rossum authored
(a) "except E, V" -> "except E as V" (b) V is now limited to a simple name (local variable) (c) V is now deleted at the end of the except block
-
- 10 Nov, 2004 1 commit
-
-
Martin v. Löwis authored
-
- 18 Jul, 2004 1 commit
-
-
Tim Peters authored
-
- 24 Feb, 2004 1 commit
-
-
Hye-Shik Chang authored
by SIGCHLD or sth because no signal is masked before. This fixes an optimized installation problem on FreeBSD libpthread.
-
- 21 Nov, 2002 1 commit
-
-
Andrew M. Kuchling authored
-
- 19 Nov, 2002 1 commit
-
-
Andrew M. Kuchling authored
suggested by PEP 291.
-
- 14 Nov, 2002 1 commit
-
-
Andrew M. Kuchling authored
-
- 04 Jun, 2002 1 commit
-
-
Jeremy Hylton authored
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.
-
- 31 Jan, 2002 1 commit
-
-
Marc-André Lemburg authored
Closes patch #435381.
-
- 06 Dec, 2001 1 commit
-
-
Fred Drake authored
-
- 26 Sep, 2000 1 commit
-
-
Greg Ward authored
Standardize whitespace in function calls.
-
- 02 Aug, 2000 1 commit
-
-
Greg Ward authored
-
- 26 Mar, 2000 1 commit
-
-
Greg Ward authored
rather than None.
-
- 23 Mar, 2000 1 commit
-
-
Greg Ward authored
returns a value.
-
- 07 Mar, 2000 1 commit
-
-
Greg Ward authored
in a rather half-assed, but probably effective, way.
-
- 02 Mar, 2000 1 commit
-
-
Greg Ward authored
-
- 17 Jan, 2000 1 commit
-
-
Greg Ward authored
Tweaked error messages in '_spawn_posix()'.
-
- 08 Sep, 1999 1 commit
-
-
Greg Ward authored
Apparently os.name is "nt" or "posix" or we don't care. Cosmetic tweaks.
-
- 29 Aug, 1999 1 commit
-
-
Greg Ward authored
-
- 14 Aug, 1999 1 commit
-
-
Greg Ward authored
Initial revision only includes support for POSIX-style fork-and-exec.
-