[Python-checkins] CVS: python/dist/src/Python bltinmodule.c,2.146,2.147

Fred L. Drake fdrake@weyr.cnri.reston.va.us
Thu, 23 Dec 1999 09:16:58 -0500 (EST)


Update of /projects/cvsroot/python/dist/src/Python
In directory weyr:/home/fdrake/projects/python/Python

Modified Files:
	bltinmodule.c 
Log Message:

Adjusted apply() docstring based on comments from Gerrit Holl
<gerrit.holl@pobox.com>.


Index: bltinmodule.c
===================================================================
RCS file: /projects/cvsroot/python/dist/src/Python/bltinmodule.c,v
retrieving revision 2.146
retrieving revision 2.147
diff -C2 -r2.146 -r2.147
*** bltinmodule.c	1999/10/12 19:54:53	2.146
--- bltinmodule.c	1999/12/23 14:16:55	2.147
***************
*** 131,138 ****
  
  static char apply_doc[] =
! "apply(function, args[, kwargs]) -> value\n\
  \n\
! Call a function with positional arguments taken from the tuple args,\n\
! and keyword arguments taken from the optional dictionary kwargs.";
  
  
--- 131,139 ----
  
  static char apply_doc[] =
! "apply(object, args[, kwargs]) -> value\n\
  \n\
! 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.";