From: Tim Peters Date: Wed, 5 Sep 2001 06:24:24 +0000 (+0000) Subject: Repair indentation. X-Git-Tag: v2.2a3~94 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=d893fd68bd8a7be8e0ceb17e3b9ea810de5820e0;p=python Repair indentation. --- diff --git a/Include/pyport.h b/Include/pyport.h index 96801539b5..0363953654 100644 --- a/Include/pyport.h +++ b/Include/pyport.h @@ -236,11 +236,11 @@ extern "C" { * result. * Caution: * This isn't reliable. C99 no longer requires libm to set errno under - * any exceptional condition, but does require +- HUGE_VAL return - * values on overflow. A 754 box *probably* maps HUGE_VAL to a - * double infinity, and we're cool if that's so, unless the input - * was an infinity and an infinity is the expected result. A C89 - * system sets errno to ERANGE, so we check for that too. We're + * any exceptional condition, but does require +- HUGE_VAL return + * values on overflow. A 754 box *probably* maps HUGE_VAL to a + * double infinity, and we're cool if that's so, unless the input + * was an infinity and an infinity is the expected result. A C89 + * system sets errno to ERANGE, so we check for that too. We're * out of luck if a C99 754 box doesn't map HUGE_VAL to +Inf, or * if the returned result is a NaN, or if a C89 box returns HUGE_VAL * in non-overflow cases.