]> granicus.if.org Git - python/commitdiff
Add two items
authorAndrew M. Kuchling <amk@amk.ca>
Fri, 17 Mar 2006 15:56:41 +0000 (15:56 +0000)
committerAndrew M. Kuchling <amk@amk.ca>
Fri, 17 Mar 2006 15:56:41 +0000 (15:56 +0000)
Doc/whatsnew/whatsnew25.tex

index 06625157b4c31d90c36c55af21429fb6f8ebb71a..80917b140bd852d5a94dcac93906617c0f7ef9e9 100644 (file)
@@ -488,6 +488,24 @@ class C():
 \end{itemize}
 
 
+%======================================================================
+\subsection{Interactive Interpreter Changes}
+
+In the interactive interpreter, \code{quit} and \code{exit} 
+have long been strings so that new users get a somewhat helpful message
+when they try to quit:
+
+\begin{verbatim}
+>>> quit
+'Use Ctrl-D (i.e. EOF) to exit.'
+\end{verbatim}
+
+In Python 2.5, \code{quit} and \code{exit} are now objects that still
+produce string representations of themselves, but are also callable.
+Newbies who try \code{quit()} or \code{exit()} will now exit the
+interpreter as they expect.  (Implemented by Georg Brandl.)
+
+
 %======================================================================
 \subsection{Optimizations}
 
@@ -530,6 +548,14 @@ details.
 % datetime.datetime() now has a strptime class method which can be used to
 % create datetime object using a string and format.
 
+\item In the \module{gc} module, the new \function{get_count()} function
+returns a 3-tuple containing the current collection counts for the
+three GC generations.  This is accounting information for the garbage
+collector; when these counts reach a specified threshold, a garbage
+collection sweep will be made.  The existing \function{gc.collect()}
+function now takes an optional \var{generation} argument of 0, 1, or 2
+to specify which generation to collect.
+
 \item A new \module{hashlib} module has been added to replace the
 \module{md5} and \module{sha} modules.  \module{hashlib} adds support
 for additional secure hashes (SHA-224, SHA-256, SHA-384, and SHA-512).