[Python-checkins] python/dist/src/Python import.c, 2.222, 2.223 marshal.c, 1.74, 1.75

jlt63 at users.sourceforge.net jlt63 at users.sourceforge.net
Thu Sep 4 05:59:53 EDT 2003


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

Modified Files:
	import.c marshal.c 
Log Message:
Bug #794140: cygwin builds do not embed

The embed2.diff patch solves the user's problem by exporting the missing
symbols from the Python core so Python can be embedded in another Cygwin
application (well, at lest vim).


Index: import.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Python/import.c,v
retrieving revision 2.222
retrieving revision 2.223
diff -C2 -d -r2.222 -r2.223
*** import.c	11 Jul 2003 15:01:02 -0000	2.222
--- import.c	4 Sep 2003 11:59:50 -0000	2.223
***************
*** 2842,2846 ****
  }
  
! void
  initimp(void)
  {
--- 2842,2846 ----
  }
  
! PyMODINIT_FUNC
  initimp(void)
  {

Index: marshal.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Python/marshal.c,v
retrieving revision 1.74
retrieving revision 1.75
diff -C2 -d -r1.74 -r1.75
*** marshal.c	30 Jul 2002 11:44:44 -0000	1.74
--- marshal.c	4 Sep 2003 11:59:50 -0000	1.75
***************
*** 876,880 ****
  };
  
! void
  PyMarshal_Init(void)
  {
--- 876,880 ----
  };
  
! PyMODINIT_FUNC
  PyMarshal_Init(void)
  {





More information about the Python-checkins mailing list