Kaydet (Commit) a2a206b9 authored tarafından Andrew M. Kuchling's avatar Andrew M. Kuchling

Mention math.degrees() and math.radians()

Other minor rewrites
üst cacfc07d
...@@ -293,14 +293,13 @@ coefficient that multiplies some other quantity. If the statement is ...@@ -293,14 +293,13 @@ coefficient that multiplies some other quantity. If the statement is
clearly a truth value. clearly a truth value.
Python's Booleans were not added for the sake of strict type-checking. Python's Booleans were not added for the sake of strict type-checking.
A very strict language such as Pascal A very strict language such as Pascal would also prevent you
% XXX is Pascal the right example here? performing arithmetic with Booleans, and would require that the
would also prevent you performing arithmetic with Booleans, and would expression in an \keyword{if} statement always evaluate to a Boolean.
require that the expression in an \keyword{if} statement always Python is not this strict, and it never will be. (\pep{285}
evaluate to a Boolean. Python is not this strict, and it never will explicitly says so.) So you can still use any expression in an
be. (\pep{285} explicitly says this.) So you can still use any \keyword{if}, even ones that evaluate to a list or tuple or some
expression in an \keyword{if}, even ones that evaluate to a list or random object, and the Boolean type is a subclass of the
tuple or some random object, and the Boolean type is a subclass of the
\class{int} class, so arithmetic using a Boolean still works. \class{int} class, so arithmetic using a Boolean still works.
\begin{verbatim} \begin{verbatim}
...@@ -382,14 +381,20 @@ allocating memory have been consolidated down into two APIs. ...@@ -382,14 +381,20 @@ allocating memory have been consolidated down into two APIs.
Memory allocated with one API must not be freed with the other API. Memory allocated with one API must not be freed with the other API.
\begin{itemize} \begin{itemize}
\item To allocate and free an undistinguished chunk of memory, use \item To allocate and free an undistinguished chunk of memory using
\cfunction{PyMem_Malloc()}, \cfunction{PyMem_Realloc()}, Python's allocator, use
\cfunction{PyMem_Free()}, and the other \cfunction{PyMem_*} \cfunction{PyMem_Malloc()}, \cfunction{PyMem_Realloc()}, and
functions. \cfunction{PyMem_Free()}.
\item In rare cases you may want to avoid using Python's allocator
in order to allocate a chunk of memory;
use \cfunction{PyObject_Malloc}, \cfunction{PyObject_Realloc},
and \cfunction{PyObject_Free}.
\item To allocate and free Python objects, \item To allocate and free Python objects,
use \cfunction{PyObject_New()}, \cfunction{PyObject_NewVar()}, and use \cfunction{PyObject_New()}, \cfunction{PyObject_NewVar()}, and
\cfunction{PyObject_Del()}. \cfunction{PyObject_Del()}.
\end{itemize} \end{itemize}
Thanks to lots of work by Tim Peters, pymalloc in 2.3 also provides Thanks to lots of work by Tim Peters, pymalloc in 2.3 also provides
...@@ -492,6 +497,13 @@ KeyError: pop(): dictionary is empty ...@@ -492,6 +497,13 @@ KeyError: pop(): dictionary is empty
>>> >>>
\end{verbatim} \end{verbatim}
\item Two new functions in the \module{math} module,
\function{degrees(\var{rads})} and \function{radians(\var{degs})},
convert between radians and degrees. Other functions in the
\module{math} module such as
\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()}, \item Two new functions, \function{killpg()} and \function{mknod()},
were added to the \module{posix} module that underlies the \module{os} were added to the \module{posix} module that underlies the \module{os}
module. module.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment