[Python-checkins] CVS: python/dist/src/Python bltinmodule.c,2.188,2.189

Fred L. Drake python-dev@python.org
Fri, 12 Jan 2001 09:05:08 -0800


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

Modified Files:
	bltinmodule.c 
Log Message:

Update the docstring for apply() so that "args" is marked as optional
(since it is).


Index: bltinmodule.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Python/bltinmodule.c,v
retrieving revision 2.188
retrieving revision 2.189
diff -C2 -r2.188 -r2.189
*** bltinmodule.c	2001/01/12 16:03:05	2.188
--- bltinmodule.c	2001/01/12 17:05:05	2.189
***************
*** 93,97 ****
  
  static char apply_doc[] =
! "apply(object, args[, kwargs]) -> value\n\
  \n\
  Call a callable object with positional arguments taken from the tuple args,\n\
--- 93,97 ----
  
  static char apply_doc[] =
! "apply(object[, args[, kwargs]]) -> value\n\
  \n\
  Call a callable object with positional arguments taken from the tuple args,\n\