]> granicus.if.org Git - python/commitdiff
Minor beautification (turn nested-if into a conjunction).
authorRaymond Hettinger <python@rcn.com>
Thu, 1 Sep 2016 06:00:32 +0000 (23:00 -0700)
committerRaymond Hettinger <python@rcn.com>
Thu, 1 Sep 2016 06:00:32 +0000 (23:00 -0700)
Lib/random.py

index 0178693ba93192343e6b3dc956e411175ffc34a9..13e115a8f418e8569d5da7ce8847f8079def4666 100644 (file)
@@ -119,12 +119,11 @@ class Random(_random.Random):
             x ^= len(a)
             a = -2 if x == -1 else x
 
-        if version == 2:
-            if isinstance(a, (str, bytes, bytearray)):
-                if isinstance(a, str):
-                    a = a.encode()
-                a += _sha512(a).digest()
-                a = int.from_bytes(a, 'big')
+        if version == 2 and isinstance(a, (str, bytes, bytearray)):
+            if isinstance(a, str):
+                a = a.encode()
+            a += _sha512(a).digest()
+            a = int.from_bytes(a, 'big')
 
         super().seed(a)
         self.gauss_next = None