[Python-checkins] python/dist/src/Modules readline.c,2.63,2.64

mwh@users.sourceforge.net mwh@users.sourceforge.net
Thu, 17 Jul 2003 09:27:00 -0700


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

Modified Files:
	readline.c 
Log Message:
Remove inaccurate (and it turns out, entirely superfluous) declarations of
PyOS_InputHook and PyOS_ReadlineFunctionPointer).

The inaccuracies were causing problems in framework builds on Mac OS X.


Index: readline.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Modules/readline.c,v
retrieving revision 2.63
retrieving revision 2.64
diff -C2 -d -r2.63 -r2.64
*** readline.c	1 Jul 2003 20:15:21 -0000	2.63
--- readline.c	17 Jul 2003 16:26:58 -0000	2.64
***************
*** 32,39 ****
  #endif
  
- /* Pointers needed from outside (but not declared in a header file). */
- PyAPI_FUNC(int) (*PyOS_InputHook)(void);
- PyAPI_FUNC(char) *(*PyOS_ReadlineFunctionPointer)(FILE *, FILE *,char *);
- 
  
  /* Exported function to send one line to readline's init file parser */
--- 32,35 ----