summaryrefslogtreecommitdiff
path: root/rsa/key.py
diff options
context:
space:
mode:
authoryjqiang <13307130285@fudan.edu.cn>2018-09-12 10:07:01 +0800
committerSybren A. Stüvel <sybren@stuvel.eu>2018-09-16 12:14:27 +0200
commit11bf33264c620684fcae6c248df30c0a444babdf (patch)
tree973f5c000e32d4a1832a92f085f6f839fd37a3b0 /rsa/key.py
parent7619f14036519d19cbfd217823a354635c5c78fc (diff)
downloadrsa-git-11bf33264c620684fcae6c248df30c0a444babdf.tar.gz
speedup
"if A and B" if mostly A is True then we should judge B at first
Diffstat (limited to 'rsa/key.py')
-rw-r--r--rsa/key.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/rsa/key.py b/rsa/key.py
index 196f78d..1004412 100644
--- a/rsa/key.py
+++ b/rsa/key.py
@@ -783,7 +783,7 @@ if __name__ == '__main__':
if failures:
break
- if (count and count % 10 == 0) or count == 1:
+ if (count % 10 == 0 and count) or count == 1:
print('%i times' % count)
except KeyboardInterrupt:
print('Aborted')