We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c41ab5b commit d647e36Copy full SHA for d647e36
1 file changed
src/ecdsa/numbertheory.py
@@ -19,15 +19,15 @@
19
xrange = range
20
try:
21
from gmpy2 import powmod
22
- GMPY2=True
23
- GMPY=False
+ GMPY2 = True
+ GMPY = False
24
except ImportError:
25
- GMPY2=False
+ GMPY2 = False
26
27
from gmpy import mpz
28
- GMPY=True
+ GMPY = True
29
30
31
32
import math
33
import warnings
0 commit comments