[Python-checkins] CVS: python/dist/src/Misc NEWS,1.104,1.105

Tim Peters tim_one@users.sourceforge.net
Wed, 24 Jan 2001 19:36:28 -0800


Update of /cvsroot/python/python/dist/src/Misc
In directory usw-pr-cvs1:/tmp/cvs-serv25276/python/dist/src/Misc

Modified Files:
	NEWS 
Log Message:
Reworked random.py so that it no longer depends on, and offers all the
functionality of, whrandom.py.  Also closes all the "XXX" todos in
random.py.  New frequently-requested functions/methods getstate() and
setstate().  All exported functions are now bound methods of a hidden
instance.  Killed all unintended exports.  Updated the docs.
FRED:  The more I fiddle the docs, the less I understand the exact
intended use of the \var, \code, \method tags.  Please review critically.
GUIDO:  See email.  I updated NEWS as if whrandom were deprecated; I
think it should be.


Index: NEWS
===================================================================
RCS file: /cvsroot/python/python/dist/src/Misc/NEWS,v
retrieving revision 1.104
retrieving revision 1.105
diff -C2 -r1.104 -r1.105
*** NEWS	2001/01/23 03:17:00	1.104
--- NEWS	2001/01/25 03:36:26	1.105
***************
*** 1,2 ****
--- 1,15 ----
+ What's New in Python 2.1 alpha 2?
+ =================================
+ Core language, builtins, and interpreter
+ 
+ 
+ Standard library
+ 
+ - random.py is now self-contained, and offers all the functionality of
+   the now-deprecated whrandom.py.  See the docs for details.  random.py
+   also supports new functions getstate() and setstate(), for saving
+   and restoring the internal state of all the generators.
+ 
+ 
  What's New in Python 2.1 alpha 1?
  =================================