[Python-checkins] CVS: python/dist/src/Doc/lib libexcs.tex,1.32,1.33

Fred L. Drake python-dev@python.org
Fri, 8 Sep 2000 20:28:03 -0700


Update of /cvsroot/python/python/dist/src/Doc/lib
In directory slayer.i.sourceforge.net:/tmp/cvs-serv16601/lib

Modified Files:
	libexcs.tex 
Log Message:

Minor clarifications in the introductory paragraph.


Index: libexcs.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/lib/libexcs.tex,v
retrieving revision 1.32
retrieving revision 1.33
diff -C2 -r1.32 -r1.33
*** libexcs.tex	2000/09/07 16:33:32	1.32
--- libexcs.tex	2000/09/09 03:28:00	1.33
***************
*** 5,14 ****
  
  
! Exceptions can be class objects or string objects.  While
! traditionally most exceptions have been string objects, in Python
! 1.5, all standard exceptions have been converted to class objects,
! and users are encouraged to do the same.  The exceptions are defined
! in the module \module{exceptions}; this module never needs to be
! imported explicitly.
  
  Two distinct string objects with the same value are considered different
--- 5,15 ----
  
  
! Exceptions can be class objects or string objects.  Though most
! exceptions have been string objects in past versions of Python, in
! Python 1.5 and newer versions, all standard exceptions have been
! converted to class objects, and users are encouraged to do the same.
! The exceptions are defined in the module \module{exceptions}.  This
! module never needs to be imported explicitly: the exceptions are
! provided in the built-in namespace.
  
  Two distinct string objects with the same value are considered different