[Python-checkins] python/dist/src/Doc/whatsnew whatsnew23.tex,1.96,1.97

akuchling@users.sourceforge.net akuchling@users.sourceforge.net
Thu, 02 Jan 2003 13:33:17 -0800


Update of /cvsroot/python/python/dist/src/Doc/whatsnew
In directory sc8-pr-cvs1:/tmp/cvs-serv21287

Modified Files:
	whatsnew23.tex 
Log Message:
Fix PEP 302 description; bump version number

Index: whatsnew23.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/whatsnew/whatsnew23.tex,v
retrieving revision 1.96
retrieving revision 1.97
diff -C2 -d -r1.96 -r1.97
*** whatsnew23.tex	2 Jan 2003 13:42:32 -0000	1.96
--- whatsnew23.tex	2 Jan 2003 21:33:15 -0000	1.97
***************
*** 3,7 ****
  
  \title{What's New in Python 2.3}
! \release{0.06}
  \author{A.M. Kuchling}
  \authoraddress{\email{amk@amk.ca}}
--- 3,7 ----
  
  \title{What's New in Python 2.3}
! \release{0.07}
  \author{A.M. Kuchling}
  \authoraddress{\email{amk@amk.ca}}
***************
*** 718,724 ****
  
  \begin{itemize}
!   \item \code{sys.path_hooks} is a list of functions.  Each function
! takes a string containing a path and returns either \code{None} or an
! importer object that will handle imports from this path.
  
    \item \code{sys.path_importer_cache} caches importer objects for
--- 718,726 ----
  
  \begin{itemize}
!   \item \code{sys.path_hooks} is a list of callable objects; most 
! often they'll be classes.  Each callable takes a string containing
! a path and either returns an importer object that will handle imports
! from this path or raises an \exception{ImportError} exception if it
! can't handle this path.
  
    \item \code{sys.path_importer_cache} caches importer objects for
***************
*** 748,756 ****
      loader = mp(fullname)
      if loader is not None:
!         <module> = loader(fullname)
          
  for path in sys.path:
      for hook in sys.path_hooks:
!         importer = hook(path)
          if importer is not None:
              loader = importer.find_module(fullname)
--- 750,763 ----
      loader = mp(fullname)
      if loader is not None:
!         <module> = loader.load_module(fullname)
          
  for path in sys.path:
      for hook in sys.path_hooks:
!         try:
!             importer = hook(path)
!         except ImportError:
!             # ImportError, so try the other path hooks
!             pass
!         else:
          if importer is not None:
              loader = importer.find_module(fullname)
***************
*** 2015,2022 ****
  suggestions, corrections and assistance with various drafts of this
  article: Simon Brunning, Michael Chermside, Scott David Daniels,
! Fred~L. Drake, Jr., Kelly Gerber, Raymond Hettinger, Michael Hudson, Detlef Lannert,
! Martin von L\"owis, Andrew MacIntyre, Lalo Martins, Gustavo Niemeyer,
! Neal Norwitz, Chris Reedy, Vinay Sajip, Neil Schemenauer, Jason
! Tishler.
  
  \end{document}
--- 2022,2029 ----
  suggestions, corrections and assistance with various drafts of this
  article: Simon Brunning, Michael Chermside, Scott David Daniels,
! Fred~L. Drake, Jr., Kelly Gerber, Raymond Hettinger, Michael Hudson,
! Detlef Lannert, Martin von L\"owis, Andrew MacIntyre, Lalo Martins,
! Gustavo Niemeyer, Neal Norwitz, Hans Nowak, Chris Reedy, Vinay Sajip,
! Neil Schemenauer, Jason Tishler, Just van~Rossum.
  
  \end{document}