[Python-checkins] CVS: python/dist/src README,1.88,1.89

Tim Peters python-dev@python.org
Sun, 23 Jul 2000 14:18:11 -0700


Update of /cvsroot/python/python/dist/src
In directory slayer.i.sourceforge.net:/tmp/cvs-serv4368/python/dist/src

Modified Files:
	README 
Log Message:
Removed all instances of RETSIGTYPE from the source code:  signal
handlers "return void", according to ANSI C.
Removed the new Py_RETURN_FROM_SIGNAL_HANDLER macro.
Left RETSIGTYPE in the config stuff, because it's not clear to
me that others aren't relying on it (e.g., extension modules).


Index: README
===================================================================
RCS file: /cvsroot/python/python/dist/src/README,v
retrieving revision 1.88
retrieving revision 1.89
diff -C2 -r1.88 -r1.89
*** README	2000/07/01 00:34:39	1.88
--- README	2000/07/23 21:18:08	1.89
***************
*** 653,659 ****
  configuration of your system.  Most symbols must simply be defined as
  1 only if the corresponding feature is present and can be left alone
! otherwise; however RETSIGTYPE must always be defined, either as int or
! as void, and the *_t type symbols must be defined as some variant of
! int if they need to be defined at all.
  
  
--- 653,658 ----
  configuration of your system.  Most symbols must simply be defined as
  1 only if the corresponding feature is present and can be left alone
! otherwise; however the *_t type symbols must be defined as some variant
! of int if they need to be defined at all.