From: Luke Kenneth Casson Leighton Date: Sat, 27 Apr 2019 13:01:55 +0000 (+0100) Subject: whitespace cleanup X-Git-Tag: ls180-24jan2020~1190 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=aee8f137840eb6104195414b85ba7f3d972daf89;p=ieee754fpu.git whitespace cleanup --- diff --git a/src/add/fsqrt.py b/src/add/fsqrt.py index 85051e08..ba5fd607 100644 --- a/src/add/fsqrt.py +++ b/src/add/fsqrt.py @@ -10,11 +10,10 @@ def sqrt(num): if (num >= res + bit): num -= res + bit res = (res >> 1) + bit - else: res >>= 1; bit >>= 2; - + return res """