From bd7c4ca569633760c88be31dee12bd742b80e228 Mon Sep 17 00:00:00 2001 From: "Andrew M. Kuchling" Date: Sat, 4 Oct 2008 01:02:29 +0000 Subject: Use correct capitalization of NaN --- Objects/floatobject.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Objects/floatobject.c b/Objects/floatobject.c index 2faff34..881671c 100644 --- a/Objects/floatobject.c +++ b/Objects/floatobject.c @@ -1548,7 +1548,7 @@ float_as_integer_ratio(PyObject *v, PyObject *unused) #ifdef Py_NAN if (Py_IS_NAN(self)) { PyErr_SetString(PyExc_ValueError, - "Cannot pass nan to float.as_integer_ratio."); + "Cannot pass NaN to float.as_integer_ratio."); return NULL; } #endif @@ -1607,7 +1607,7 @@ PyDoc_STRVAR(float_as_integer_ratio_doc, "\n" "Returns a pair of integers, whose ratio is exactly equal to the original\n" "float and with a positive denominator.\n" -"Raises OverflowError on infinities and a ValueError on nans.\n" +"Raises OverflowError on infinities and a ValueError on NaNs.\n" "\n" ">>> (10.0).as_integer_ratio()\n" "(10, 1)\n" -- cgit v0.12