[Python-checkins] python/dist/src/Misc HISTORY,1.10,1.11 NEWS,1.484,1.485

montanaro@users.sourceforge.net montanaro@users.sourceforge.net
Tue, 17 Sep 2002 13:55:34 -0700


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

Modified Files:
	HISTORY NEWS 
Log Message:
migrate news about 2.1 and earlier releases from NEWS to HISTORY in 
preparation for ReST-ification of NEWS.  (Also tests checkin ability
from my new Powerbook.  woohoo!)



Index: HISTORY
===================================================================
RCS file: /cvsroot/python/python/dist/src/Misc/HISTORY,v
retrieving revision 1.10
retrieving revision 1.11
diff -C2 -d -r1.10 -r1.11
*** HISTORY	4 Sep 2000 17:24:24 -0000	1.10
--- HISTORY	17 Sep 2002 20:55:31 -0000	1.11
***************
*** 9,12 ****
--- 9,1834 ----
  
  
+ What's New in Python 2.1 (final)?
+ =================================
+ 
+ We only changed a few things since the last release candidate, all in
+ Python library code:
+ 
+ - A bug in the locale module was fixed that affected locales which
[...1797 lines suppressed...]
+ 
+ New APIs in locale.py: normalize(), getdefaultlocale(), resetlocale(),
+ and changes to getlocale() and setlocale().
+ 
+ The new module is now enabled per default.
+ 
+ It is not true that the encodings codecs cannot be used for normal
+ strings: the string.encode() (which is also present on 8-bit strings
+ !) allows using them for 8-bit strings too, e.g. to convert files from
+ cp1252 (Windows) to latin-1 or vice-versa.
+ 
+ Japanese codecs are available from Tamito KAJIYAMA:
+ http://pseudo.grad.sccs.chukyo-u.ac.jp/~kajiyama/python/
+ 
+ 
+ ======================================================================
+ 
+ 
  =======================================
  ==> Release 1.6 (September 5, 2000) <==

Index: NEWS
===================================================================
RCS file: /cvsroot/python/python/dist/src/Misc/NEWS,v
retrieving revision 1.484
retrieving revision 1.485
diff -C2 -d -r1.484 -r1.485
*** NEWS	16 Sep 2002 17:26:24 -0000	1.484
--- NEWS	17 Sep 2002 20:55:31 -0000	1.485
***************
*** 2023,3849 ****
  - Removed the unused last_is_sticky argument from the internal
    _PyTuple_Resize().  If this affects you, you were cheating.
- 
- 
- ======================================================================
- 
- 
- What's New in Python 2.1 (final)?
- =================================
- 
[...1798 lines suppressed...]
- 
- The 1.6 NEWS file can't be changed after the release is done, so here
- is some late-breaking news:
- 
- New APIs in locale.py: normalize(), getdefaultlocale(), resetlocale(),
- and changes to getlocale() and setlocale().
- 
- The new module is now enabled per default.
- 
- It is not true that the encodings codecs cannot be used for normal
- strings: the string.encode() (which is also present on 8-bit strings
- !) allows using them for 8-bit strings too, e.g. to convert files from
- cp1252 (Windows) to latin-1 or vice-versa.
- 
- Japanese codecs are available from Tamito KAJIYAMA:
- http://pseudo.grad.sccs.chukyo-u.ac.jp/~kajiyama/python/
- 
- 
- ======================================================================
--- 2023,2024 ----