1# Copyright 2018 the V8 project authors. All rights reserved. 2# Use of this source code is governed by a BSD-style license that can be 3# found in the LICENSE file. 4 5import random 6 7 8def random_seed(): 9 """Returns random, non-zero seed.""" 10 seed = 0 11 while not seed: 12 seed = random.SystemRandom().randint(-2147483648, 2147483647) 13 return seed 14