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

Fred L. Drake python-dev@python.org
Thu, 17 Aug 2000 15:29:33 -0700


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

Modified Files:
	libexcs.tex 
Log Message:

Revise the comments about the exceptions module to not refer to source
code; it is not sufficiently readable now that it in written in C, and
is less likely to be available to end users.


Index: libexcs.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/lib/libexcs.tex,v
retrieving revision 1.30
retrieving revision 1.31
diff -C2 -r1.30 -r1.31
*** libexcs.tex	2000/06/30 16:06:19	1.30
--- libexcs.tex	2000/08/17 22:29:31	1.31
***************
*** 6,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 source code for those
! exceptions is present in the standard library module
! \module{exceptions}; this module never needs to be imported explicitly.
  
  Two distinct string objects with the same value are considered different
--- 6,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