summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrew M. Kuchling <amk@amk.ca>2002-06-17 13:40:04 (GMT)
committerAndrew M. Kuchling <amk@amk.ca>2002-06-17 13:40:04 (GMT)
commit9f6e104c80ff20edbd27998c9655430e9b1ecaae (patch)
tree416ad24b34e06b0bdf1b3d6052b50038c0ac3fb8
parent495afea36eea79ff917a4fcd340c9719fc1179ce (diff)
downloadcpython-9f6e104c80ff20edbd27998c9655430e9b1ecaae.zip
cpython-9f6e104c80ff20edbd27998c9655430e9b1ecaae.tar.gz
cpython-9f6e104c80ff20edbd27998c9655430e9b1ecaae.tar.bz2
Add reminder, and a new POSIX function
Tweak traceback display for consistency
-rw-r--r--Doc/whatsnew/whatsnew23.tex14
1 files changed, 8 insertions, 6 deletions
diff --git a/Doc/whatsnew/whatsnew23.tex b/Doc/whatsnew/whatsnew23.tex
index 6d3651a..be1d68b 100644
--- a/Doc/whatsnew/whatsnew23.tex
+++ b/Doc/whatsnew/whatsnew23.tex
@@ -24,6 +24,8 @@
%
% Docstrings now optional (with --without-doc-strings)
%
+% New dependency argument to distutils.Extension
+%
%\section{Introduction \label{intro}}
@@ -109,8 +111,8 @@ Here's a sample usage of the \function{generate_ints} generator:
2
>>> gen.next()
Traceback (most recent call last):
- File "<stdin>", line 1, in ?
- File "<stdin>", line 2, in generate_ints
+ File "stdin", line 1, in ?
+ File "stdin", line 2, in generate_ints
StopIteration
\end{verbatim}
@@ -534,7 +536,7 @@ KeyError: 4
2
>>> d.pop(1)
Traceback (most recent call last):
- File ``<stdin>'', line 1, in ?
+ File ``stdin'', line 1, in ?
KeyError: pop(): dictionary is empty
>>> d
{}
@@ -550,9 +552,9 @@ convert between radians and degrees. Other functions in the
\function{math.sin()} and \function{math.cos()} have always required
input values measured in radians. (Contributed by Raymond Hettinger.)
-\item Two new functions, \function{killpg()} and \function{mknod()},
-were added to the \module{posix} module that underlies the \module{os}
-module.
+\item Three new functions, \function{getpgid()}, \function{killpg()},
+and \function{mknod()}, were added to the \module{posix} module that
+underlies the \module{os} module.
\item Two new binary packagers were added to the Distutils.
\code{bdist_pkgtool} builds \file{.pkg} files to use with Solaris