[pyrepl-checkins] pyrepl pyrepl_utilsmodule.c,1.1.1.1,1.2

mwh@codespeak.net mwh@codespeak.net
Sun, 29 Dec 2002 00:18:57 +0100 (MET)


Update of /cvs/pyrepl/pyrepl
In directory thoth.codespeak.net:/tmp/cvs-serv6142

Modified Files:
	pyrepl_utilsmodule.c 
Log Message:
Fix name of module init function.   Issue4 from roundup.


Index: pyrepl_utilsmodule.c
===================================================================
RCS file: /cvs/pyrepl/pyrepl/pyrepl_utilsmodule.c,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -C2 -d -r1.1.1.1 -r1.2
*** pyrepl_utilsmodule.c	29 Oct 2002 14:21:28 -0000	1.1.1.1
--- pyrepl_utilsmodule.c	28 Dec 2002 23:18:55 -0000	1.2
***************
*** 1,2 ****
--- 1,3 ----
+ 
  /*   Copyright 2000-2001 Michael Hudson mwh@python.net
   *
***************
*** 167,173 ****
  "Utilities to help speed up pyrepl.";
  
! void initpyrepl_utils(void)
  {
! 	Py_InitModule3(
! 		"pyrepl_utils",pyrepl_utils_methods,pyrepl_utils_doc);
  }
--- 168,175 ----
  "Utilities to help speed up pyrepl.";
  
! void init_pyrepl_utils(void)
  {
! 	Py_InitModule3("_pyrepl_utils", 
! 		       pyrepl_utils_methods,
! 		       pyrepl_utils_doc);
  }