From: Mark Dickinson Date: Sat, 5 Jul 2008 11:29:03 +0000 (+0000) Subject: Docstring typo X-Git-Tag: v3.0b2~94 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=0d748c2fa467d6fa0e9c98571b649c57cddc2242;p=thirdparty%2FPython%2Fcpython.git Docstring typo --- diff --git a/Python/bltinmodule.c b/Python/bltinmodule.c index bd826f0a5738..723c307b8f05 100644 --- a/Python/bltinmodule.c +++ b/Python/bltinmodule.c @@ -1726,7 +1726,7 @@ PyDoc_STRVAR(round_doc, "round(number[, ndigits]) -> floating point number\n\ \n\ Round a number to a given precision in decimal digits (default 0 digits).\n\ -This returns an int when called with one argument, otherwise a the\n\ +This returns an int when called with one argument, otherwise the\n\ same type as the number. ndigits may be negative.");