From: Brian Warner <warner@allmydata.com>
Date: Tue, 14 Aug 2007 21:17:12 +0000 (-0700)
Subject: hush pyflakes warning in Crypto.Util.number
X-Git-Tag: allmydata-tahoe-0.5.0~9
X-Git-Url: https://git.rkrishnan.org/specifications/components/class-simplejson.JSONDecoder-index.html?a=commitdiff_plain;h=6ac237b845f9c44e3229890485277b6da106f7d8;p=tahoe-lafs%2Ftahoe-lafs.git

hush pyflakes warning in Crypto.Util.number
---

diff --git a/src/allmydata/Crypto/Util/number.py b/src/allmydata/Crypto/Util/number.py
index 7a5de7de..fa8326e1 100644
--- a/src/allmydata/Crypto/Util/number.py
+++ b/src/allmydata/Crypto/Util/number.py
@@ -13,10 +13,11 @@
 __revision__ = "$Id: number.py,v 1.13 2003/04/04 18:21:07 akuchling Exp $"
 
 bignum = long
+_fastmath = None
 try:
     from allmydata.Crypto.PublicKey import _fastmath
 except ImportError:
-    _fastmath = None
+    pass
 
 # Commented out and replaced with faster versions below
 ## def long2str(n):