summaryrefslogtreecommitdiffstats
path: root/Modules/mathmodule.c
diff options
context:
space:
mode:
authorPeter Schneider-Kamp <nowonder@nowonder.de>2001-06-10 16:45:08 (GMT)
committerPeter Schneider-Kamp <nowonder@nowonder.de>2001-06-10 16:45:08 (GMT)
commit07c1922b12ae56dc892672d02f95e7521e1b8d55 (patch)
treeee8badf8216d8747acfd49f3a6155234037c7cfa /Modules/mathmodule.c
parent2a7f3841227d63d011ba498006c4a41cd86f3bb7 (diff)
downloadcpython-07c1922b12ae56dc892672d02f95e7521e1b8d55.zip
cpython-07c1922b12ae56dc892672d02f95e7521e1b8d55.tar.gz
cpython-07c1922b12ae56dc892672d02f95e7521e1b8d55.tar.bz2
annoying whitespace inconsistency
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 8c86c38..7282393 100644
--- a/Modules/mathmodule.c
+++ b/Modules/mathmodule.c
@@ -128,7 +128,7 @@ FUNC1(fabs, fabs,
"fabs(x)\n\nReturn the absolute value of the real x.")
FUNC1(floor, floor,
"floor(x)\n\nReturn the floor of x as a real.")
- FUNC2(fmod, fmod,
+FUNC2(fmod, fmod,
"fmod(x,y)\n\nReturn fmod(x, y), according to platform C."
" x % y may differ.")
FUNC2(hypot, hypot,