[Python-checkins] python/dist/src/Python bltinmodule.c,2.283,2.284

rhettinger@users.sourceforge.net rhettinger@users.sourceforge.net
Sun, 06 Apr 2003 01:01:18 -0800


Update of /cvsroot/python/python/dist/src/Python
In directory sc8-pr-cvs1:/tmp/cvs-serv1577/Python

Modified Files:
	bltinmodule.c 
Log Message:
SF patch #701494:  more apply removals

Index: bltinmodule.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Python/bltinmodule.c,v
retrieving revision 2.283
retrieving revision 2.284
diff -C2 -d -r2.283 -r2.284
*** bltinmodule.c	23 Mar 2003 17:52:28 -0000	2.283
--- bltinmodule.c	6 Apr 2003 09:01:11 -0000	2.284
***************
*** 113,117 ****
  Call a callable object with positional arguments taken from the tuple args,\n\
  and keyword arguments taken from the optional dictionary kwargs.\n\
! Note that classes are callable, as are instances with a __call__() method.");
  
  
--- 113,120 ----
  Call a callable object with positional arguments taken from the tuple args,\n\
  and keyword arguments taken from the optional dictionary kwargs.\n\
! Note that classes are callable, as are instances with a __call__() method.\n\
! \n\
! Deprecated since release 2.3. Instead, use the extended call syntax:\n\
!     function(*args, **keywords).");