[Python-checkins] python/dist/src/Modules mathmodule.c,2.74,2.75

mwh at users.sourceforge.net mwh at users.sourceforge.net
Wed Apr 6 13:27:44 CEST 2005


Update of /cvsroot/python/python/dist/src/Modules
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv7780

Modified Files:
	mathmodule.c 
Log Message:
Add a comment explaining the import of longintrepr.h.


Index: mathmodule.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Modules/mathmodule.c,v
retrieving revision 2.74
retrieving revision 2.75
diff -u -d -r2.74 -r2.75
--- mathmodule.c	22 Mar 2004 08:43:55 -0000	2.74
+++ mathmodule.c	6 Apr 2005 11:27:40 -0000	2.75
@@ -1,7 +1,7 @@
 /* Math module -- standard C math library functions, pi and e */
 
 #include "Python.h"
-#include "longintrepr.h"
+#include "longintrepr.h" // just for SHIFT
 
 #ifndef _MSC_VER
 #ifndef __STDC__



More information about the Python-checkins mailing list