summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorAndrew M. Kuchling <amk@amk.ca>2002-11-04 20:05:10 (GMT)
committerAndrew M. Kuchling <amk@amk.ca>2002-11-04 20:05:10 (GMT)
commitdc3f7e12ee12cc738407fe0f1dc06c17b8b883b7 (patch)
treec7dcd8ec0c5e5d1110947288060bf9f2cd5ce687 /Doc
parent29c8623e5cdec2855ddbdec2c9c6305a8daa8fbd (diff)
downloadcpython-dc3f7e12ee12cc738407fe0f1dc06c17b8b883b7.zip
cpython-dc3f7e12ee12cc738407fe0f1dc06c17b8b883b7.tar.gz
cpython-dc3f7e12ee12cc738407fe0f1dc06c17b8b883b7.tar.bz2
Mention distutil changes
Diffstat (limited to 'Doc')
-rw-r--r--Doc/whatsnew/whatsnew23.tex7
1 files changed, 7 insertions, 0 deletions
diff --git a/Doc/whatsnew/whatsnew23.tex b/Doc/whatsnew/whatsnew23.tex
index 2b14698..604167b 100644
--- a/Doc/whatsnew/whatsnew23.tex
+++ b/Doc/whatsnew/whatsnew23.tex
@@ -902,6 +902,13 @@ ext = Extension("samp",
Modifying \file{sample.h} would then cause the module to be recompiled.
(Contributed by Jeremy Hylton.)
+\item Other minor changes to Distutils:
+it now checks for the \envvar{CC}, \envvar{CFLAGS}, \envvar{CPP},
+\envvar{LDFLAGS}, and \envvar{CPPFLAGS} environment variables, using
+them to override the settings in Python's configuration (contributed
+by Robert Weber); the \function{get_distutils_option()} method lists
+recently-added extensions to Distutils.
+
\item The \module{getopt} module gained a new function,
\function{gnu_getopt()}, that supports the same arguments as the existing
\function{getopt()} function but uses GNU-style scanning mode.