summaryrefslogtreecommitdiffstats
path: root/Modules/mathmodule.c
diff options
context:
space:
mode:
authorMichael W. Hudson <mwh@python.net>2005-04-06 11:27:40 (GMT)
committerMichael W. Hudson <mwh@python.net>2005-04-06 11:27:40 (GMT)
commit2ea3072805a23225736c4efdb3a4943d9cafbf63 (patch)
tree7b66df85c76abbaa9b8f3248e8de5ab9fbb96af6 /Modules/mathmodule.c
parenta739b08d12b4a6a3015ccbbb98dd0bc2c546e010 (diff)
downloadcpython-2ea3072805a23225736c4efdb3a4943d9cafbf63.zip
cpython-2ea3072805a23225736c4efdb3a4943d9cafbf63.tar.gz
cpython-2ea3072805a23225736c4efdb3a4943d9cafbf63.tar.bz2
Add a comment explaining the import of longintrepr.h.
Diffstat (limited to 'Modules/mathmodule.c')
-rw-r--r--Modules/mathmodule.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/mathmodule.c b/Modules/mathmodule.c
index 2605114..4c678a83 100644
--- a/Modules/mathmodule.c
+++ b/Modules/mathmodule.c
@@ -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__