summaryrefslogtreecommitdiffstats
path: root/Modules
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2008-12-20 22:49:24 (GMT)
committerBenjamin Peterson <benjamin@python.org>2008-12-20 22:49:24 (GMT)
commit9de729810274da47f3408cc4b869a13672e18bec (patch)
tree9cdaa3ebe7f1f280003877828a77f9243499c65c /Modules
parentfed67fd41e63cb3dcb2b5716a4e2c08613962c21 (diff)
downloadcpython-9de729810274da47f3408cc4b869a13672e18bec.zip
cpython-9de729810274da47f3408cc4b869a13672e18bec.tar.gz
cpython-9de729810274da47f3408cc4b869a13672e18bec.tar.bz2
remove redundant sentence
Diffstat (limited to 'Modules')
-rw-r--r--Modules/mathmodule.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/mathmodule.c b/Modules/mathmodule.c
index 01d3991..952d56a 100644
--- a/Modules/mathmodule.c
+++ b/Modules/mathmodule.c
@@ -767,7 +767,7 @@ PyDoc_STRVAR(math_modf_doc,
"modf(x)\n"
"\n"
"Return the fractional and integer parts of x. Both results carry the sign\n"
-"of x. The integer part is returned as a real.");
+"of x and are floats.");
/* A decent logarithm is easy to compute even for huge longs, but libm can't
do that by itself -- loghelper can. func is log or log10, and name is