[Python-checkins] CVS: python/dist/src/Doc/lib libnew.tex,1.8,1.8.22.1

Michael Hudson mwh@users.sourceforge.net
Mon, 28 Jan 2002 07:05:16 -0800


Update of /cvsroot/python/python/dist/src/Doc/lib
In directory usw-pr-cvs1:/tmp/cvs-serv31072

Modified Files:
      Tag: release22-maint
	libnew.tex 
Log Message:
It's merge time!

Backport gvanrossum's checkin of revision 1.9:

There's no need for typechecks on the second and third argument of
new.instancemethod() -- the instancemethod object is now a perfectly
general container.

This fixes SF bug ##503091 (Pedro Rodriquez): new.instancemethod fails
for new classes

This is a 2.2.1 candidate.



Index: libnew.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/lib/libnew.tex,v
retrieving revision 1.8
retrieving revision 1.8.22.1
diff -C2 -d -r1.8 -r1.8.22.1
*** libnew.tex	2001/01/28 17:23:05	1.8
--- libnew.tex	2002/01/28 15:05:14	1.8.22.1
***************
*** 26,31 ****
  This function will return a method object, bound to \var{instance}, or
  unbound if \var{instance} is \code{None}.  \var{function} must be
! callable, and \var{instance} must be an instance object or
! \code{None}.
  \end{funcdesc}
  
--- 26,30 ----
  This function will return a method object, bound to \var{instance}, or
  unbound if \var{instance} is \code{None}.  \var{function} must be
! callable.
  \end{funcdesc}